diff options
author | Ed Schouten <ed@FreeBSD.org> | 2011-12-13 17:34:47 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2011-12-13 17:34:47 +0000 |
commit | bdc971eb19f1587a855b446583dee42745f76fb5 (patch) | |
tree | 6680d81f129f0782fcd1515b1f4af7ce94045db6 /contrib/gcclibs/libcpp/macro.c | |
parent | 59340eb8e21aedfba9d715c137acdc668db134fd (diff) |
Notes
Diffstat (limited to 'contrib/gcclibs/libcpp/macro.c')
-rw-r--r-- | contrib/gcclibs/libcpp/macro.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/gcclibs/libcpp/macro.c b/contrib/gcclibs/libcpp/macro.c index be50c111e32e..1eec5788f35b 100644 --- a/contrib/gcclibs/libcpp/macro.c +++ b/contrib/gcclibs/libcpp/macro.c @@ -262,6 +262,10 @@ _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node) else result = pfile->time; break; + + case BT_COUNTER: + number = pfile->nextcounter++; + break; } if (result == NULL) |