Is it possible to disable GCC warning about missing underscore in user defined literal?

大城市里の小女人 提交于 2020-01-03 07:25:21

问题


void operator"" test( const char* str, size_t sz  )
{
    std::cout<<str<<" world";
}

int main()
{
    "hello"test;
    return 0;
}

In GCC 4.7, this generates "warning: literal operator suffixes not preceded by '_' are reserved for future standardization [enabled by default]"

I understand why this warning is generated, but GCC says "enabled by default".

Is it possible to disable this warning without just disabling all warnings via the -w flag?


回答1:


After reading several comments to this question, I reviewed the C++ 11 Standard (non-final draft N3337).

When I said "I understand why this warning is generated" I was mistaken. I assumed that an underscore was not technically required by the standard, but just a recommendation (hence the warning rather than an error).

But as Nicol Bolas has brought up, the standard uses the following language when speaking about user defined literals:

"Literal suffix identifiers that do not start with an underscore are reserved for future standardization." usrlit.suffix

"Some literal suffix identifiers are reserved for future standardization; see [usrlit.suffix]. A declaration whose literal-operator-id uses such a literal suffix identifier is ill-formed, no diagnostic required." over.literal

This is similar to the language used for reserved identifiers and the "alternative representations" such as "and", "or", "not". I think this makes it pretty clear that this shouldn't actually be a warning in the first place, but an error.

This may not be the direct answer to the question of "is it possible to disable", but it is answer enough for me.




回答2:


For what it is worth, -Wno-literal-suffix silences this warning since gcc-7 (see here live on godbold), i.e. this option also turns off warnings for user defined literal operators without leading underscore:

-Wliteral-suffix (C++ and Objective-C++ only)

...

Additionally, warn when a user-defined literal operator is declared with a literal suffix identifier that doesn’t begin with an underscore. Literal suffix identifiers that don’t begin with an underscore are reserved for future standardization.


However, one should stick to the advice in @cmeub's answer and rather avoid using literal suffix identifiers without underscore, as it leads to ill formed programs.



来源:https://stackoverflow.com/questions/15355048/is-it-possible-to-disable-gcc-warning-about-missing-underscore-in-user-defined-l

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!