We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a namespace object is used inside its own namespace, it doesn't need a scoping prefix. e.g.
namespace ashrae205_ns { void from_json(const nlohmann::json& j, LiquidComponent& x) \ { a205_json_get<ashrae205_ns::LiquidConstituent>(j, *logger, "liquid_constituent", x.liquid_constituent, x.liquid_constituent_is_set, true); } }
can just be
namespace ashrae205_ns { void from_json(const nlohmann::json& j, LiquidComponent& x) \ { a205_json_get<LiquidConstituent>(j, *logger, "liquid_constituent", x.liquid_constituent, x.liquid_constituent_is_set, true); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When a namespace object is used inside its own namespace, it doesn't need a scoping prefix. e.g.
can just be
The text was updated successfully, but these errors were encountered: