Update submodules to fix compilation error on newer Clang and GCC (#2890)

* Update submodules

* Update Ghoul
This commit is contained in:
Alexander Bock
2023-09-13 09:51:30 +02:00
committed by GitHub
parent a4af241cad
commit 7483b912e0
19 changed files with 35 additions and 28 deletions

View File

@@ -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()));
}
});