merge, again, IsRecursiveContainer

This commit is contained in:
Gennadiy Civil
2018-03-15 14:31:37 -04:00
parent a325ad2db5
commit a178cc7ef7
6 changed files with 123 additions and 20 deletions

View File

@@ -563,6 +563,7 @@ class ExpectationSet {
public:
// A bidirectional iterator that can read a const element in the set.
typedef Expectation::Set::const_iterator const_iterator;
typedef Expectation::Set::iterator iterator;
// An object stored in the set. This is an alias of Expectation.
typedef Expectation::Set::value_type value_type;

View File

@@ -4526,6 +4526,7 @@ class Streamlike {
class ConstIter;
public:
typedef ConstIter const_iterator;
typedef ConstIter iterator;
typedef T value_type;
template <typename InIter>