Browse Source

fixed guard overwrite

overwrites
Thomas Knoll 10 months ago
committed by sp
parent
commit
073e1b28e5
  1. 2
      util/Grid.cpp

2
util/Grid.cpp

@ -115,6 +115,8 @@ void Grid::applyOverwrites(std::string& str, std::vector<Configuration>& configu
search = config.identifier_;
} else if (config.type_ == ConfigType::UpdateOnly) {
search = config.identifier_;
} else if (config.type_ == ConfigType::GuardOnly) {
search = config.identifier_;
}
else if (config.type_ == ConfigType::Constant) {
search = config.identifier_;

Loading…
Cancel
Save