| 19 | |
| 20 | namespace { |
| 21 | static std::span<const std::byte> stringToBytes(const std::string& str) { |
| 22 | return std::span<const std::byte>( |
| 23 | reinterpret_cast<const std::byte*>(str.data()), |
| 24 | str.size()); |
| 25 | } |
| 26 | |
| 27 | GeoJsonObject parseGeoJsonObject(const std::string& json) { |
| 28 | Result<GeoJsonDocument> doc = |
no test coverage detected