mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-06 11:29:55 -05:00
Remove fmt::format and replace with std::format
This commit is contained in:
@@ -85,7 +85,7 @@ ScreenSpaceImageLocal::ScreenSpaceImageLocal(const ghoul::Dictionary& dictionary
|
||||
if (!std::filesystem::is_regular_file(absPath(_texturePath))) {
|
||||
LWARNINGC(
|
||||
"ScreenSpaceImageLocal",
|
||||
fmt::format(
|
||||
std::format(
|
||||
"Image '{}' did not exist for '{}'", _texturePath.value(), _identifier
|
||||
)
|
||||
);
|
||||
@@ -103,7 +103,7 @@ ScreenSpaceImageLocal::ScreenSpaceImageLocal(const ghoul::Dictionary& dictionary
|
||||
else {
|
||||
LWARNINGC(
|
||||
"ScreenSpaceImageLocal",
|
||||
fmt::format(
|
||||
std::format(
|
||||
"Image '{}' did not exist for '{}'", *p.texturePath, _identifier
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user