Skip to content

Commit

Permalink
BUG: Fix determination of default parallelization mode. (#814)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson authored Jan 5, 2024
1 parent f1d7bbe commit 8641d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplnx/Core/Preferences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Result<> Preferences::loadFromFile(const std::filesystem::path& filepath)

void Preferences::checkUseOoc()
{
m_UseOoc = !value(k_PreferredLargeDataFormat_Key).empty();
m_UseOoc = !value(k_PreferredLargeDataFormat_Key).get<std::string>().empty();
}

bool Preferences::useOocData() const
Expand Down

0 comments on commit 8641d3f

Please sign in to comment.