| 11169 | #endif |
| 11170 | |
| 11171 | TOML_EXTERNAL_LINKAGE |
| 11172 | std::string path::str() const |
| 11173 | { |
| 11174 | if (empty()) |
| 11175 | return ""; |
| 11176 | |
| 11177 | std::ostringstream ss; |
| 11178 | print_to(ss); |
| 11179 | return std::move(ss).str(); |
| 11180 | } |
| 11181 | |
| 11182 | #if TOML_ENABLE_WINDOWS_COMPAT |
| 11183 |
no test coverage detected