mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-22 19:29:04 -05:00
Adapt to changes in Ghoul that made absPath return a std::filesystem::path instead of a std::string
This commit is contained in:
@@ -140,9 +140,9 @@ std::string LabelParser::encode(const std::string& line) const {
|
||||
}
|
||||
|
||||
bool LabelParser::create() {
|
||||
std::string sequenceDir = absPath(_fileName);
|
||||
std::filesystem::path sequenceDir = absPath(_fileName);
|
||||
if (!std::filesystem::is_directory(sequenceDir)) {
|
||||
LERROR(fmt::format("Could not load Label Directory '{}'", sequenceDir));
|
||||
LERROR(fmt::format("Could not load Label Directory {}", sequenceDir));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user