Talk:cpp/language/attributes
It would be nice if the standard attributes were added to the index so they can be searched for. Md5i (talk) 08:38, 11 July 2017 (PDT)
Looking over the description of the deprecated attribute (N4266)
The description of the 'deprecated' attribute does not include the addition of allowing it to be used for namespaces and enumerators, as per N4266.
83.254.9.176 04:53, 14 October 2017 (PDT)
broken link in the page and mysterious '...'
In this paragraph there is a broken link to '...':
|
The |
and it is mentioned here that parameter pack could be used in attributes:
Attribute listPack expansions are allowed in the lists of attributes, as in |
But I am confused about how could such usages be valid. Is attributes... a pack of typename... or something else?
--Yaossg (talk) 02:41, 6 May 2023 (PDT)
- Apparently this
{{tt|[<!-- -->[...]]}}is supposed to mean the double bracket syntax and not a wiki link. [[attributes...]]seems like a bad example of pack expansion. A more realistic example might be[[assume(args)...]]whereargsis a parameter pack (currently only works on MSVC). --D41D8CD98F (talk) 04:13, 6 May 2023 (PDT)- Both are fixed. --D41D8CD98F (talk) 04:22, 6 May 2023 (PDT)