| 8794 | #endif |
| 8795 | |
| 8796 | TOML_NODISCARD |
| 8797 | std::string_view description() const noexcept |
| 8798 | { |
| 8799 | #if TOML_EXCEPTIONS |
| 8800 | return std::string_view{ what() }; |
| 8801 | #else |
| 8802 | return description_; |
| 8803 | #endif |
| 8804 | } |
| 8805 | |
| 8806 | TOML_NODISCARD |
| 8807 | const source_region& source() const noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected