the only thing we actually want as normal string is the class members
| 25 | |
| 26 | //the only thing we actually want as normal string is the class members |
| 27 | static inline std::string _toString(std::string_view s) { |
| 28 | return {s.begin(), s.end()}; |
| 29 | } |
| 30 | |
| 31 | GJGameLevel* GJGameLevel::createWithResponse(std::string_view backendResponse) |
| 32 | { |
no test coverage detected