summaryrefslogtreecommitdiff
path: root/include/list
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-09-02 20:42:31 +0000
committerHoward Hinnant <hhinnant@apple.com>2011-09-02 20:42:31 +0000
commit9cbee430da220344bd4d78067299e48270cf716f (patch)
tree0f0b694818244f5f6537b65a276612d9c0e8bc86 /include/list
parent6b171c557beed2ef430bf917d732e10d0e319a33 (diff)
Fix const correctness bug in __move_assign. Found and fixed by Ion Gaztañaga.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@139032 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/list')
-rw-r--r--include/list4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/list b/include/list
index fa515e0bb..900e2ec98 100644
--- a/include/list
+++ b/include/list
@@ -444,14 +444,14 @@ private:
{}
_LIBCPP_INLINE_VISIBILITY
- void __move_assign_alloc(const __list_imp& __c, true_type)
+ void __move_assign_alloc(__list_imp& __c, true_type)
_NOEXCEPT_(is_nothrow_move_assignable<__node_allocator>::value)
{
__node_alloc() = _VSTD::move(__c.__node_alloc());
}
_LIBCPP_INLINE_VISIBILITY
- void __move_assign_alloc(const __list_imp& __c, false_type)
+ void __move_assign_alloc(__list_imp& __c, false_type)
_NOEXCEPT
{}
};