[PATCH] D18217: [libcxx] Fix -Wdeprecated warnings
Marshall Clow via cfe-commits
cfe-commits at lists.llvm.org
Sat Mar 19 13:59:28 PDT 2016
mclow.lists added inline comments.
================
Comment at: include/__bit_reference:75
@@ -73,1 +74,3 @@
+ _LIBCPP_INLINE_VISIBILITY
+ __bit_reference(const __bit_reference&) _NOEXCEPT = default;
private:
----------------
Sadly, we don't get to say '=default', because we have clients that compile under C++03. Please use `_LIBCPP_DEFAULT` instead.
http://reviews.llvm.org/D18217
More information about the cfe-commits
mailing list