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: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
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
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs