[libc++] Mark some members private in experimental/functional

Some members are public but should be private. Nothing requires they are public
right now, so make them private.

Differential Revision: https://reviews.llvm.org/D119097
This commit is contained in:
Joe Loser 2022-02-06 19:47:45 -05:00
parent 7568f7101f
commit 66dea85b36
No known key found for this signature in database
GPG Key ID: 1CDBEBC050EA230D
1 changed files with 1 additions and 2 deletions

View File

@ -144,7 +144,6 @@ template<class _Key, class _Value, class _Hash, class _BinaryPredicate, bool /*u
// General case for BM data searching; use a map
template<class _Key, typename _Value, class _Hash, class _BinaryPredicate>
class _BMSkipTable<_Key, _Value, _Hash, _BinaryPredicate, false> {
public: // TODO private:
typedef _Value value_type;
typedef _Key key_type;
@ -253,7 +252,7 @@ public:
return this->__search(__f, __l);
}
public: // TODO private:
private:
_RandomAccessIterator1 __first_;
_RandomAccessIterator1 __last_;
_BinaryPredicate __pred_;