Skip to content

Commit

Permalink
Linux build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfellows committed Dec 19, 2024
1 parent 278ded2 commit 8962614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/moja.modules.cbm/src/cbmtransitionrulesmodule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ namespace moja {
// Explicit new classifier values take priority over wildcards, with this one taking
// priority if both specify a non-wildcard value.
for (const auto& classifier : other._classifiers) {
auto& thisClassifier = _classifiers.find(classifier.first);
const auto& thisClassifier = _classifiers.find(classifier.first);
if (thisClassifier != _classifiers.end()) {
if (thisClassifier->second == "?") {
mergedRule._classifiers[classifier.first] = classifier.second;
Expand Down

0 comments on commit 8962614

Please sign in to comment.