https://llvm.org/bugs/show_bug.cgi?id=27260
Bug ID: 27260 Summary: libc++ is missing std::vector static void swap(reference __x, reference __y) _NOEXCEPT Product: libc++ Version: 3.8 Hardware: PC OS: All Status: NEW Severity: normal Priority: P Component: All Bugs Assignee: unassignedclangb...@nondot.org Reporter: ionelpopesc...@yahoo.com CC: llvm-bugs@lists.llvm.org, mclow.li...@gmail.com Classification: Unclassified This method is missing from vector class. It could be implemented as: template <class _Allocator> class _LIBCPP_TYPE_VIS_ONLY vector<bool, _Allocator> : private __vector_base_common<true> { ... static void swap(reference __x, reference __y) _NOEXCEPT { _VSTD::swap(__x, __y); } ... } -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs