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/set | |
| 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/set')
| -rw-r--r-- | libcxx/include/set | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/set b/libcxx/include/set index 606af726abf..8e4c2ae6a60 100644 --- a/libcxx/include/set +++ b/libcxx/include/set @@ -1023,7 +1023,7 @@ public: #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES _LIBCPP_INLINE_VISIBILITY iterator insert(const_iterator __p, value_type&& __v) - {return __tree_.__insert_multi(_VSTD::move(__v));} + {return __tree_.__insert_multi(__p, _VSTD::move(__v));} #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES template <class _InputIterator> _LIBCPP_INLINE_VISIBILITY |

