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

@@ -186,7 +186,7 @@ RenderableNodeLine::RenderableNodeLine(const ghoul::Dictionary& dictionary)
"Trying to use relative offsets for start node '{}' that has no "
"bounding sphere. This will result in no offset. Use direct "
"values by setting UseRelativeOffsets to false",
parent()->identifier(), _start
parent()->identifier(), _start.value()
));
}
});
@@ -204,7 +204,7 @@ RenderableNodeLine::RenderableNodeLine(const ghoul::Dictionary& dictionary)
"Trying to use relative offsets for end node '{}' that has no "
"bounding sphere. This will result in no offset. Use direct "
"values by setting UseRelativeOffsets to false",
parent()->identifier(), _end
parent()->identifier(), _end.value()
));
}
});