mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Update submodules to fix compilation error on newer Clang and GCC (#2890)
* Update submodules * Update Ghoul
This commit is contained in:
@@ -662,7 +662,7 @@ RenderableStars::RenderableStars(const ghoul::Dictionary& dictionary)
|
||||
_colorTextureIsDirty = true;
|
||||
}
|
||||
else {
|
||||
LWARNING(fmt::format("File not found: {}", _colorTexturePath));
|
||||
LWARNING(fmt::format("File not found: {}", _colorTexturePath.value()));
|
||||
}
|
||||
});
|
||||
_colorTextureFile->setCallback([this]() { _colorTextureIsDirty = true; });
|
||||
@@ -682,7 +682,7 @@ RenderableStars::RenderableStars(const ghoul::Dictionary& dictionary)
|
||||
_otherDataColorMapIsDirty = true;
|
||||
}
|
||||
else {
|
||||
LWARNING(fmt::format("File not found: {}", _otherDataColorMapPath));
|
||||
LWARNING(fmt::format("File not found: {}", _otherDataColorMapPath.value()));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user