diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-07-12 17:08:20 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-07-12 17:08:20 +0000 |
commit | b9bf5af85379fa84ae7bd7de702d143b770d5986 (patch) | |
tree | 0bd08aa40f46c6e7043eb471f093e5a8de4087cf /gcc/cpplex.c | |
parent | e4a2ac1af7dce092e8b7d5ba0910d16e1a99164a (diff) | |
download | gcc-b9bf5af85379fa84ae7bd7de702d143b770d5986.zip gcc-b9bf5af85379fa84ae7bd7de702d143b770d5986.tar.gz gcc-b9bf5af85379fa84ae7bd7de702d143b770d5986.tar.bz2 |
Oops, use CPP_WTRADITIONAL, not CPP_TRADITIONAL.
From-SVN: r34989
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 58262ee..2cadad0 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -2069,7 +2069,7 @@ is_macro_disabled (pfile, expansion, token) if (next->type != CPP_OPEN_PAREN) { _cpp_push_token (pfile, next); - if (CPP_TRADITIONAL (pfile)) + if (CPP_WTRADITIONAL (pfile)) cpp_warning (pfile, "function macro %.*s must be used with arguments in traditional C", (int) token->val.node->length, token->val.node->name); |