You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, building with juce_recommended_warning_flags I get this warning:
_deps/melatonin_perfetto-src/melatonin_perfetto/melatonin_perfetto.h:249:69: warning: token pasting of ',' and __VA_ARGS__ is a GNU extension [-Wgnu-zero-variadic-macro-arguments]
TRACE_EVENT ("dsp", perfetto::StaticString (pf.data()), ##__VA_ARGS__)
I had the same issue with my own logging macros and simply removing the ## solved it. I'm building with Clang though, so I thought those might would be needed to make gcc happy, but maybe not actually...
The text was updated successfully, but these errors were encountered:
Hi, building with
juce_recommended_warning_flags
I get this warning:I had the same issue with my own logging macros and simply removing the
##
solved it. I'm building with Clang though, so I thought those might would be needed to make gcc happy, but maybe not actually...The text was updated successfully, but these errors were encountered: