sg22-c-cpp-standard-compatibility / sg-compatibility

A joint Study Group between the C (WG14) and C++ (WG21) Committees to ensure the longterm synchronization and cooperation of the C and C++ programming languages where any mutual interests lie.
1 stars 0 forks source link

CWG #1625. Adding spaces between tokens in stringizing #30

Open NinaRanns opened 10 months ago

NinaRanns commented 10 months ago

Notify WG14 of CWG #1625

Given the following input,

define F(A, B, C) A ## x.B ## y.C ## z

define STRINGIFY(x) #x

define EXPAND_AND_STRINGIFY(x) STRINGIFY(x)

char v[] = EXPAND_AND_STRINGIFY(F(a, b, c)) there is implementation variance in the value of v: some produce the string "ax.by.cz" and others produce the string "ax. by. cz". Although 15.6.3 [cpp.stringize] paragraph 2 is explicit in its treatment of leading and trailing white space, it is not clear whether there is latitude for inserting spaces between tokens, as some implementations do, since the description otherwise is written solely in terms of preprocessing tokens. There may be cases in which such spaces would be needed to preserve the original tokenization, but it is not clear whether the result of stringization needs to produce something that would lex to the same tokens.

See also issue 2522.

Notes from the CWG April, 2013 meeting:

Because the preprocessor specification is primarily copied directly from the C Standard, this issue has been referred to the C liaison for consultation with WG14.