[PATCH] D26294: [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER.

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Fri Nov 4 12:56:33 PDT 2016


EricWF accepted this revision.
EricWF added a comment.
This revision is now accepted and ready to land.

LGTM. Holy crap. Thanks STL!

Just a note `_LIBCPP_STD_VER` is set to 11 in C++03 mode, it's silly but that's the way it is. So that makes me wonder if some of the `_LIBCPP_STD_VER > 11` really should be `TEST_STD_VER >= 11`, since they may have just been disabling the test in C++03. Either way this preserves the status quo.


https://reviews.llvm.org/D26294





More information about the cfe-commits mailing list