| 30 | inline bool operator < (const TestObject& test) const { return _str < test._str; } |
| 31 | |
| 32 | inline const std::string toString() const { return std::string("TestObject(") + _str + "," + std::to_string(_vec.size()) + "," + _internal_buf.toString() + "," + _external_buf.toString() + ")"; } |
| 33 | |
| 34 | // CBA All of the following empty containers are included in the memory allocated for std::map and use psram |
| 35 | std::string _str; |
no test coverage detected