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
Also (this is admittedly strange) the C++ grammar doesn't introduce an attribute with a single [[ token but with two tokens [[.
(Yes, this means it's really annoying to call an immediately-invoked lambda inside a call to operator[]).
The text was updated successfully, but these errors were encountered:
The given example is invalid, attribute-namespaces must be identifiers (dcl.attr.grammar), therefore scope resolution operators may not appear in an attribute-namespace.
Since C++17, attributes can have
using
in them:[[using name::space: attr]]
Also (this is admittedly strange) the C++ grammar doesn't introduce an attribute with a single
[[
token but with two tokens[
[
.(Yes, this means it's really annoying to call an immediately-invoked lambda inside a call to
operator[]
).The text was updated successfully, but these errors were encountered: