<p dir="ltr">Can you provide a reduced test case for this? What is on the line A:V?</p>
<div class="gmail_quote">On 17 Aug 2014 07:39, "Edward Diener" <<a href="mailto:eldlistmailingz@tropicsoft.com">eldlistmailingz@tropicsoft.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Compiling some code I am receiving the warning:<br>
<br>
"warning: empty macro arguments are a C99 feature [-Wc99-extensions]"<br>
<br>
The warning is output for file A, line V during a macro invocation.<br>
<br>
But the actual macro using an empty argument is in file B, line W. If I surround file B, line W with:<br>
<br>
# pragma clang diagnostic push<br>
# pragma clang diagnostic ignored "-Wc99-extensions"<br>
<br>
// line W, macro definition with empty macro argument<br>
<br>
# pragma clang diagnostic pop<br>
<br>
the warning still occurs. Is this a clang bug ?<br>
<br>
I have noticed that if I get a warning about using variadic macros ( "-Wvariadic-macros" ) if I surround the actual variadic macro with:<br>
<br>
# pragma clang diagnostic push<br>
# pragma clang diagnostic ignored "-Wvariadic-macros"<br>
<br>
// variadic macro definition<br>
<br>
# pragma clang diagnostic pop<br>
<br>
the warning goes away.<br>
<br>
For various reasons too lengthy to explain, std=c99 or std=c++0x or std=c++11 are not specified but I still need to eliminate the "-Wc99-extensions" warning in the actual source file.<br>
<br>
______________________________<u></u>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/cfe-dev</a><br>
</blockquote></div>