diff options
author | pfg <pfg@FreeBSD.org> | 2013-05-12 15:29:35 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2013-05-12 15:29:35 +0000 |
commit | b0d72f0d7ad6703e4a6d78b99590ac1fbcb716fb (patch) | |
tree | 09efed35d1d90aebbe44c54da46d272ea7bdb62d /contrib/gcclibs/libcpp/include/cpplib.h | |
parent | 168bd583e81022553017d75b42291248fd1b0f3e (diff) | |
download | FreeBSD-src-b0d72f0d7ad6703e4a6d78b99590ac1fbcb716fb.zip FreeBSD-src-b0d72f0d7ad6703e4a6d78b99590ac1fbcb716fb.tar.gz |
Add support for "d" floating-point suffix, as defined by draft N1312
of TR 24732. Emit pedantic warning if the feature is being used.
Should solve GCC bug 39027.
Obtained from: OpenBSD
MFC after: 2 weeks
Diffstat (limited to 'contrib/gcclibs/libcpp/include/cpplib.h')
-rw-r--r-- | contrib/gcclibs/libcpp/include/cpplib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/gcclibs/libcpp/include/cpplib.h b/contrib/gcclibs/libcpp/include/cpplib.h index c6a5efc..851a2e3 100644 --- a/contrib/gcclibs/libcpp/include/cpplib.h +++ b/contrib/gcclibs/libcpp/include/cpplib.h @@ -749,6 +749,7 @@ struct cpp_num #define CPP_N_UNSIGNED 0x1000 /* Properties. */ #define CPP_N_IMAGINARY 0x2000 #define CPP_N_DFLOAT 0x4000 +#define CPP_N_DEFAULT 0x8000 /* Classify a CPP_NUMBER token. The return value is a combination of the flags from the above sets. */ |