mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00
fix: check std::source_location::file_name result
encountered an error with nullptr from std::source_location::file_name
This commit is contained in:
@@ -434,9 +434,19 @@ using source_location = std::source_location;
|
|||||||
|
|
||||||
inline std::string to_string(const source_location& loc)
|
inline std::string to_string(const source_location& loc)
|
||||||
{
|
{
|
||||||
return std::string(" at line ") + std::to_string(loc.line()) +
|
const char* fname = loc.file_name();
|
||||||
std::string(" in file ") + std::string(loc.file_name());
|
if(fname)
|
||||||
|
{
|
||||||
|
return std::string(" at line ") + std::to_string(loc.line()) +
|
||||||
|
std::string(" in file ") + std::string(fname);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return std::string(" at line ") + std::to_string(loc.line()) +
|
||||||
|
std::string(" in unknown file");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // cxx
|
} // cxx
|
||||||
} // toml
|
} // toml
|
||||||
#elif defined(TOML11_HAS_EXPERIMENTAL_SOURCE_LOCATION)
|
#elif defined(TOML11_HAS_EXPERIMENTAL_SOURCE_LOCATION)
|
||||||
@@ -449,9 +459,19 @@ using source_location = std::experimental::source_location;
|
|||||||
|
|
||||||
inline std::string to_string(const source_location& loc)
|
inline std::string to_string(const source_location& loc)
|
||||||
{
|
{
|
||||||
return std::string(" at line ") + std::to_string(loc.line()) +
|
const char* fname = loc.file_name();
|
||||||
std::string(" in file ") + std::string(loc.file_name());
|
if(fname)
|
||||||
|
{
|
||||||
|
return std::string(" at line ") + std::to_string(loc.line()) +
|
||||||
|
std::string(" in file ") + std::string(fname);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return std::string(" at line ") + std::to_string(loc.line()) +
|
||||||
|
std::string(" in unknown file");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // cxx
|
} // cxx
|
||||||
} // toml
|
} // toml
|
||||||
#elif defined(TOML11_HAS_BUILTIN_FILE_LINE)
|
#elif defined(TOML11_HAS_BUILTIN_FILE_LINE)
|
||||||
@@ -483,9 +503,19 @@ struct source_location
|
|||||||
|
|
||||||
inline std::string to_string(const source_location& loc)
|
inline std::string to_string(const source_location& loc)
|
||||||
{
|
{
|
||||||
return std::string(" at line ") + std::to_string(loc.line()) +
|
const char* fname = loc.file_name();
|
||||||
std::string(" in file ") + std::string(loc.file_name());
|
if(fname)
|
||||||
|
{
|
||||||
|
return std::string(" at line ") + std::to_string(loc.line()) +
|
||||||
|
std::string(" in file ") + std::string(fname);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return std::string(" at line ") + std::to_string(loc.line()) +
|
||||||
|
std::string(" in unknown file");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // cxx
|
} // cxx
|
||||||
} // toml
|
} // toml
|
||||||
#else // no builtin
|
#else // no builtin
|
||||||
|
Reference in New Issue
Block a user