Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarineBlueQuartz committed Dec 15, 2023
1 parent 028394d commit dc20f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/complex/Utilities/SIMPLConversion.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1742,7 +1742,7 @@ struct ReadASCIIWizardDataFilterParameterConverter

static std::vector<char> ConvertToChars(const std::string& string)
{
std::vector<char> chars(string.begin(), string.end());
return std::vector<char>(string.begin(), string.end());
}

static Result<ValueType> convert(const nlohmann::json& json)
Expand Down

0 comments on commit dc20f61

Please sign in to comment.