Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
41eb6086
Commit
41eb6086
authored
Feb 26, 2014
by
Damien George
Browse files
py: Remove more var arg names fro macros with var args.
parent
d5e81826
Changes
3
Hide whitespace changes
Inline
Side-by-side
py/gc.c
View file @
41eb6086
...
...
@@ -12,7 +12,7 @@
#define DEBUG_PRINT (1)
#define DEBUG_printf DEBUG_printf
#else
// don't print debugging info
#define DEBUG_printf(
args
...) (void)0
#define DEBUG_printf(...) (void)0
#endif
typedef
unsigned
char
byte
;
...
...
py/objfun.c
View file @
41eb6086
...
...
@@ -17,7 +17,7 @@
#if 0 // print debugging info
#define DEBUG_PRINT (1)
#else
// don't print debugging info
#define DEBUG_printf(
args
...) (void)0
#define DEBUG_printf(...) (void)0
#endif
/******************************************************************************/
...
...
py/runtime.c
View file @
41eb6086
...
...
@@ -25,10 +25,10 @@
#define DEBUG_PRINT (1)
#define WRITE_CODE (1)
#define DEBUG_printf DEBUG_printf
#define DEBUG_OP_printf(
args
...) DEBUG_printf(
args
)
#define DEBUG_OP_printf(...) DEBUG_printf(
__VA_ARGS__
)
#else
// don't print debugging info
#define DEBUG_printf(
args
...) (void)0
#define DEBUG_OP_printf(
args
...) (void)0
#define DEBUG_printf(...) (void)0
#define DEBUG_OP_printf(...) (void)0
#endif
// locals and globals need to be pointers because they can be the same in outer module scope
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment