| 41 | }; |
| 42 | |
| 43 | struct TestStr { |
| 44 | TestStr(); |
| 45 | TestStr(const std::string& s); // NOLINT runtime/explicit |
| 46 | TestStr(const char* s); // NOLINT runtime/explicit |
| 47 | explicit TestStr(const TestInt& test_int); |
| 48 | std::string value; |
| 49 | |
| 50 | bool operator==(const TestStr& other) const; |
| 51 | |
| 52 | friend std::ostream& operator<<(std::ostream& os, const TestStr& v); |
| 53 | }; |
| 54 | |
| 55 | template <> |
| 56 | struct IterationTraits<TestStr> { |
no outgoing calls