Skip to content

Commit

Permalink
fix codetest failure - c_parens
Browse files Browse the repository at this point in the history
there should be at least one space between a C
keyword and any subsequent open parenthesis
  • Loading branch information
mikehh committed May 12, 2011
1 parent 42b1d80 commit 6456502
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions include/parrot/context.h
@@ -1,5 +1,5 @@
/* context.h
* Copyright (C) 2009-2010, Parrot Foundation.
* Copyright (C) 2009-2011, Parrot Foundation.
* Overview:
* Context
*/
Expand Down Expand Up @@ -542,38 +542,38 @@ UINTVAL Parrot_pcc_warnings_test_func(SHIM_INTERP,
# define Parrot_pcc_set_continuation(i, c, value) do { \
CONTEXT_STRUCT(c)->current_cont = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_caller_ctx(i, c, value) do { \
CONTEXT_STRUCT(c)->caller_ctx = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_namespace(i, c, value) do { \
CONTEXT_STRUCT(c)->current_namespace = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_object(i, c, value) do { \
CONTEXT_STRUCT(c)->current_object = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_lex_pad(i, c, value) do { \
CONTEXT_STRUCT(c)->lex_pad = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_handlers(i, c, value) do { \
CONTEXT_STRUCT(c)->handlers = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_outer_ctx(i, c, value) do { \
CONTEXT_STRUCT(c)->outer_ctx = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_signature(i, c, value) do { \
CONTEXT_STRUCT(c)->current_sig = (value); \
PARROT_GC_WRITE_BARRIER((i), (c)); \
} while(0)
} while (0)
# define Parrot_pcc_set_context(i, c) do { \
CURRENT_CONTEXT(i) = (c); \
} while(0)
} while (0)
#else
# define Parrot_pcc_set_continuation(i, c, value) Parrot_pcc_set_continuation_func((i), (c), (value))
# define Parrot_pcc_set_caller_ctx(i, c, value) Parrot_pcc_set_caller_ctx_func((i), (c), (value))
Expand Down

0 comments on commit 6456502

Please sign in to comment.