Skip to content

Commit

Permalink
trying to make clang happy
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Jan 12, 2024
1 parent eb8a830 commit 19c4492
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions include/open_atmos/mechanism_configuration/validation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace open_atmos
{
struct Keys
{
// Shared, but also Mechanism
const std::string version = "version";
const std::string name = "name";

Expand Down Expand Up @@ -56,14 +57,14 @@ namespace open_atmos

struct Phase
{
const std::vector<std::string> required_keys;
const std::vector<std::string> optional_keys;
const std::vector<std::string> required_keys {};
const std::vector<std::string> optional_keys {};
} phase;

struct Mechanism
{
const std::vector<std::string> required_keys;
const std::vector<std::string> optional_keys;
const std::vector<std::string> required_keys {};
const std::vector<std::string> optional_keys {};
} mechanism;

} // namespace validation
Expand Down

0 comments on commit 19c4492

Please sign in to comment.