++
Assignee: unassigned at gcc dot gnu.org
Reporter: TrevorJamesHickey at gmail dot com
Target Milestone: ---
Given the following code:
#if MACRO_WITHOUT_A_VALUE
int var;
#endif
int main(){}
When compiled with, `g++ -std=c++1z -Wundef -o main main.cpp`,
it
: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: TrevorJamesHickey at gmail dot com
Target Milestone: ---
Is the following program valid C++?
void f(unsigned wchar_t){}
int main(){}
It compiles without errors.
The