Skip to content

Commit

Permalink
Fix json load for MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhbell committed Sep 7, 2024
1 parent 08de905 commit 0bbec40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/teqp/models/multifluid/multifluid_activity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class MultifluidPlusActivity{
MultifluidPlusActivity(const nlohmann::json &spec) :
m_multifluid(multifluidfactory(spec.at("multifluid"))),
m_activity(ares_model_factory(spec.at("activity").at("aresmodel"))),
b(spec.at("activity").at("options").at("b")),
b(spec.at("activity").at("options").at("b").get<std::vector<double>>()),
u(spec.at("activity").at("options").at("u")){}

/// Calculate the dimensionless value of \f$g_{\rm GE}^{\rm E,R}/RT\f$ from the AC model
Expand Down

0 comments on commit 0bbec40

Please sign in to comment.