[libcxx-commits] [PATCH] D59344: Add contains method to map types
Zoe Carver via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 13 20:38:39 PDT 2019
zoecarver marked 2 inline comments as done.
zoecarver added inline comments.
================
Comment at: include/map:194
const_iterator find(const K& x) const; // C++14
+
template<typename K>
----------------
Seems like this should be the correct spacing but I can revert it if you want.
================
Comment at: include/set:364
+ template<typename K>
+ size_type count(const K& x) const; // C++14
size_type count(const key_type& k) const;
----------------
`count` isnt in the summary but it is declared in the class.
Repository:
rCXX libc++
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59344/new/
https://reviews.llvm.org/D59344
More information about the libcxx-commits
mailing list