Home
last modified time | relevance | path

Searched defs:incrementable1 (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/poly_collection/test/
Dany_types.hpp25 struct incrementable1 struct
27 incrementable1(int n):n{n}{} in incrementable1() argument
32 bool operator==(const incrementable1& x)const{return n==x.n;} in operator ==()
33 incrementable1& operator++(){++n;return *this;} in operator ++()
34 int n;