A couple of misc test changes so they work with <= c++03.
Details
Details
Diff Detail
Diff Detail
Event Timeline
test/depr/depr.c.headers/stdarg_h.pass.cpp | ||
---|---|---|
18–22 | va_copy is not defined until c++11. | |
test/language.support/support.start.term/quick_exit.pass.cpp | ||
11 | quick_exit was added in c++11. | |
test/language.support/support.types/nullptr_t.pass.cpp | ||
57 | The c++03 nullptr is only convertible to pointers and bool. This appears to be what the standard suggests. However it is not an integral type so it can't be reinterpret cast to a signed integer. |
va_copy is not defined until c++11.