This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 113d. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.

2024-04-05


2232. thread_local anonymous unions

Section: 9.2.2  [dcl.stc]     Status: open     Submitter: Mike Herrick     Date: 2016-02-23

It is not clear from the current wording whether the thread_local specifier can be applied to anonymous unions or not. According to 9.2.2 [dcl.stc] paragraph 3,

The thread_local specifier indicates that the named entity has thread storage duration (6.7.5.3 [basic.stc.thread]). It shall be applied only to the names of variables of namespace or block scope and to the names of static data members.

One might think that an anonymous union object would be a “variable,” but the next paragraph seems to treat variables and anonymous unions as distinct:

The static specifier can be applied only to names of variables and functions and to anonymous unions (11.5.2 [class.union.anon]).