diff options
| author | Eric Fiselier <eric@efcs.ca> | 2016-12-23 23:37:52 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2016-12-23 23:37:52 +0000 |
| commit | fd838227411f3ce1fa348f1d334266231bbcc84d (patch) | |
| tree | 204de9a3dad8b79d83bba224d8f6d4775169483f /libcxx/include/list | |
| parent | 16166a4d71fca27f454a0837465143700dd41e98 (diff) | |
| download | bcm5719-llvm-fd838227411f3ce1fa348f1d334266231bbcc84d.tar.gz bcm5719-llvm-fd838227411f3ce1fa348f1d334266231bbcc84d.zip | |
Fix unused parameters and variables
llvm-svn: 290459
Diffstat (limited to 'libcxx/include/list')
| -rw-r--r-- | libcxx/include/list | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/list b/libcxx/include/list index e44bcf26a42..220a40205c4 100644 --- a/libcxx/include/list +++ b/libcxx/include/list @@ -655,7 +655,7 @@ private: } _LIBCPP_INLINE_VISIBILITY - void __copy_assign_alloc(const __list_imp& __c, false_type) + void __copy_assign_alloc(const __list_imp&, false_type) {} _LIBCPP_INLINE_VISIBILITY @@ -666,7 +666,7 @@ private: } _LIBCPP_INLINE_VISIBILITY - void __move_assign_alloc(__list_imp& __c, false_type) + void __move_assign_alloc(__list_imp&, false_type) _NOEXCEPT {} }; @@ -2336,14 +2336,14 @@ list<_Tp, _Alloc>::__decrementable(const const_iterator* __i) const template <class _Tp, class _Alloc> bool -list<_Tp, _Alloc>::__addable(const const_iterator* __i, ptrdiff_t __n) const +list<_Tp, _Alloc>::__addable(const const_iterator*, ptrdiff_t) const { return false; } template <class _Tp, class _Alloc> bool -list<_Tp, _Alloc>::__subscriptable(const const_iterator* __i, ptrdiff_t __n) const +list<_Tp, _Alloc>::__subscriptable(const const_iterator*, ptrdiff_t) const { return false; } |

