Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion yaml-path/yaml-path.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ namespace YAML
std::size_t ErrorOffset() const { return m_offsTokenScan; } ///< index into the full path where the error occurred
std::optional<size_t> BoundArg() const { return m_fromBoundArg; } ///< if token was taken from a bound argument, this is its index

char const * what() const override { return What().c_str(); } ///< overrides \c std::exception::what, returning the detailed error message from \ref What
char const * what() const noexcept override { return What().c_str(); } ///< overrides \c std::exception::what, returning the detailed error message from \ref What
std::string const & What(bool detailed = true) const;

static std::string GetErrorMessage(EPathError error);
Expand Down