-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consistent (and conventional) spelling of struct tm
#4338
Comments
Note that I deliberately used |
Note that this approaches "struct stat" territory (although "stat" is POSIX, not C), and we would definitely want the "struct" in front for "stat". |
Editorial meeting: Drop "struct" in front of "tm" to avoid (the impression of) accidental introduction of the name in the immediately-enclosing namespace. |
We have declarations of "struct tm" in header synopses |
I don't think we spotted this detail when we reviewed P0175. Prior to that, we didn't have the synopses at all and just refered to C, so at this point I would simply consider this something unclear that we never discussed. |
Conventionally, when C++ declares or defines a struct type, such as
struct timespec;
, it refers to that type by name without thestruct
tag when used.However,
struct tm
appears to be something of a special case. As this type is supplied by the C library, and appears in mostly C specified APIs, thestruct
tag (required by C compilers) has been preserved in much of our wording and library synopses. However, the<locale>
header is an exception, consistently referring to justtm*
in the functions it declares.We should be consistent in how we reference this type in C++ source, and make an active decision to either follow the C++ convention of not repeating the
struct
tag on each use, or whether we prefer to follow the C convention of requiring thestruct
tag in each case.The text was updated successfully, but these errors were encountered: