[libcxx-commits] [PATCH] D62228: Make `vector` unconditionally move elements when exceptions are disabled.

Zoe Carver via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu May 23 17:47:13 PDT 2019


zoecarver added inline comments.


================
Comment at: include/utility:298
+      _SelectReturnType<__move_if_noexcept || __exceptions_disabled>;
+#else
+  typedef const _Tp& __move_if_noexcept_t;
----------------
Missing `public:`. In C++03 these won't be public member types.


Repository:
  rCXX libc++

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D62228/new/

https://reviews.llvm.org/D62228





More information about the libcxx-commits mailing list