Skip to content

Commit

Permalink
fixed an incorrectly-built error name
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Mar 23, 2012
1 parent 707e83c commit 6f23924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/parrot/api.h
Expand Up @@ -66,7 +66,7 @@ Parrot_confess(ARGIN(const char *cond), ARGIN(const char *file), unsigned int li

/* Static assertions are checked at compile type */
#define PARROT_STATIC_ASSERT_HELPER(COND,MSG) typedef char static_assertion_##MSG[(!!(COND))*2-1]
#define PARROT_STATIC_ASSERT3(X,L) PARROT_STATIC_ASSERT_HELPER(X,static_assertion_at_line_##L)
#define PARROT_STATIC_ASSERT3(X,L) PARROT_STATIC_ASSERT_HELPER(X,at_line_##L)
#define PARROT_STATIC_ASSERT2(X,L) PARROT_STATIC_ASSERT3(X,L)
#define PARROT_STATIC_ASSERT(X) PARROT_STATIC_ASSERT2(X,__LINE__)

Expand Down

0 comments on commit 6f23924

Please sign in to comment.