Searched defs:SomeInt (Results 1 – 2 of 2) sorted by relevance
14 struct SomeInt { struct18 constexpr explicit SomeInt(int value = 0) : value_(value) {} in value_() argument58 constexpr SomeInt operator++(int) { auto tmp = *this; ++value_; return tmp; } argument60 constexpr SomeInt operator--(int) { auto tmp = *this; --value_; return tmp; } argument
26 struct SomeInt { struct29 constexpr explicit SomeInt(int value = 0) : value_(value) {} in SomeInt() argument