Variadic宏预期')'在数字常量之前

时间:2016-03-26 22:05:10

标签: c c-preprocessor variadic-macros

这是实际的宏:

#ifdef DEBUG                                                                   
#define debug(funcname, format, ...) \                                         
        printf(BOLD UNDERLINED REVERSE \                                    
        "DEBUG IN " __FILE__ \                                             
        " LINE " __LINE__ ":" \                                            
        RESET UNDERLINED REVERSE \                                         
        "In " funcname \                                                   
        RESET REVERSE format RESET, ##__VA_ARGS__)                         
#else                                                                          
#define debug(funcname, format, ...)                                           
#endif                                                                        

其中所有常量都是明确定义的字符串常量。 我称之为:

char message[] = "Hello StackOverflow !\n";
debug("main()", "Message: %s\n", message);

但是我收到了消息

error: expected ‘)’ before numeric constant debug("main()", "Message: ", message);在最后的括号中徘徊。

这很奇怪,因为我第一次测试了宏,现在该项目已经与团队一起推进它不起作用......

1 个答案:

答案 0 :(得分:5)

那是因为

php artisan make:migration add_votes_to_users_table --table=users

扩展为语法上无效的

php artisan migrate

因为 " LINE " __LINE__ ":" 是一个整数,而不是可以连接的字符串文字。