Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2011-12-02 00:21:04 +0400
committerHoward Hinnant <hhinnant@apple.com>2011-12-02 00:21:04 +0400
commitc206366fd7774aff222578c2680b931a4c2c35ba (patch)
tree754a1c9a558a9c1e4e1774aec8ac5268ba3d2afe /libcxx/include/deque
parentab0ad4ed1eea577056d76a4b76734dae881955d3 (diff)
Quash a whole bunch of warnings
llvm-svn: 145624
Diffstat (limited to 'libcxx/include/deque')
-rw-r--r--libcxx/include/deque6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/deque b/libcxx/include/deque
index 27bc33e6ad0c..e65acfc806d4 100644
--- a/libcxx/include/deque
+++ b/libcxx/include/deque
@@ -988,7 +988,7 @@ private:
}
_LIBCPP_INLINE_VISIBILITY
- void __move_assign_alloc(__deque_base& __c, false_type) _NOEXCEPT
+ void __move_assign_alloc(__deque_base&, false_type) _NOEXCEPT
{}
_LIBCPP_INLINE_VISIBILITY
@@ -1007,7 +1007,7 @@ private:
}
_LIBCPP_INLINE_VISIBILITY
- static void __swap_alloc(allocator_type& __x, allocator_type& __y, false_type)
+ static void __swap_alloc(allocator_type&, allocator_type&, false_type)
_NOEXCEPT
{}
};
@@ -1403,7 +1403,7 @@ private:
}
_LIBCPP_INLINE_VISIBILITY
- void __copy_assign_alloc(const deque& __c, false_type)
+ void __copy_assign_alloc(const deque&, false_type)
{}
void __move_assign(deque& __c, true_type)