[PATCH] D24065: [libc++] Don't attempt to dllexport enum class
Shoaib Meenai via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 30 17:09:41 PDT 2016
smeenai created this revision.
smeenai added reviewers: abdulras, EricWF, mclow.lists.
smeenai added subscribers: cfe-commits, kastiglione.
An enum class can't be dllexport'ed, and attempting to do so produces
warnings.
https://reviews.llvm.org/D24065
Files:
include/__config
Index: include/__config
===================================================================
--- include/__config
+++ include/__config
@@ -716,7 +716,7 @@
_LIBCPP_ALWAYS_INLINE operator int() const {return __v_;} \
};
#else // _LIBCPP_HAS_NO_STRONG_ENUMS
-#define _LIBCPP_DECLARE_STRONG_ENUM(x) enum class _LIBCPP_TYPE_VIS x
+#define _LIBCPP_DECLARE_STRONG_ENUM(x) enum class _LIBCPP_TYPE_VIS_ONLY x
#define _LIBCPP_DECLARE_STRONG_ENUM_EPILOG(x)
#endif // _LIBCPP_HAS_NO_STRONG_ENUMS
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24065.69786.patch
Type: text/x-patch
Size: 500 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160831/38ccba29/attachment.bin>
More information about the cfe-commits
mailing list