mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-03 01:09:34 -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:
@@ -50,7 +50,9 @@ namespace openspace {
|
||||
std::string FieldlinesSequenceModule::DefaultTransferFunctionFile = "";
|
||||
|
||||
FieldlinesSequenceModule::FieldlinesSequenceModule() : OpenSpaceModule(Name) {
|
||||
DefaultTransferFunctionFile = absPath("${TEMPORARY}/default_transfer_function.txt");
|
||||
DefaultTransferFunctionFile = absPath(
|
||||
"${TEMPORARY}/default_transfer_function.txt"
|
||||
).string();
|
||||
|
||||
std::ofstream file(DefaultTransferFunctionFile);
|
||||
file << DefaultTransferfunctionSource;
|
||||
|
||||
Reference in New Issue
Block a user