[PATCH] D35472: Implement P0463R1: "Endian just Endian"
Roman Lebedev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 17 02:42:47 PDT 2017
lebedev.ri added inline comments.
================
Comment at: include/type_traits:4740
+#if _LIBCPP_STD_VER > 14
+enum class endian
----------------
(Apologies for double commenting, did not notice that it was in phab until after replying)
I'm probably wrong, but if this is a C++2a proposal, shouldn't this
```#if _LIBCPP_STD_VER > 14```
be
```#if _LIBCPP_STD_VER > 17```
?
https://reviews.llvm.org/D35472
More information about the cfe-commits
mailing list