This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: __builtin_string_constant_p
Michael Veksler <VEKSLER@il.ibm.com> writes:
> Another idea:
> #define assert_string_constant(text) (void)(#text "")
That will pass for every expression, since #text is always expanded to a
string literal. You probably want this:
#define assert_string_constant(text) (void)(text "")
but that's not a 100% solution either, since text may be something like
1000 + "foobar" (but I can thing of any useful non-literal that would
pass).
Andreas.
--
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."