diff options
| author | Eric Fiselier <eric@efcs.ca> | 2016-12-09 12:17:31 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2016-12-09 12:17:31 +0000 |
| commit | 41b4d6c8ffedfe3a31749d29c40298ca340f1ba9 (patch) | |
| tree | 2510060fbc30c9da219a4445d0ffc3cd61ca4cc2 /libcxx/include/set | |
| parent | 21d10328551893fc67d21501300e71573d085e26 (diff) | |
| download | bcm5719-llvm-41b4d6c8ffedfe3a31749d29c40298ca340f1ba9.tar.gz bcm5719-llvm-41b4d6c8ffedfe3a31749d29c40298ca340f1ba9.zip | |
Fix missing const on set::count. Patch from Andrey Khalyavin
llvm-svn: 289204
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 ac69e085241..606af726abf 100644 --- a/libcxx/include/set +++ b/libcxx/include/set @@ -672,7 +672,7 @@ public: template <typename _K2> _LIBCPP_INLINE_VISIBILITY typename enable_if<__is_transparent<_Compare, _K2>::value,size_type>::type - count(const _K2& __k) {return __tree_.__count_unique(__k);} + count(const _K2& __k) const {return __tree_.__count_unique(__k);} #endif _LIBCPP_INLINE_VISIBILITY iterator lower_bound(const key_type& __k) |

