Skip to content

Commit

Permalink
Convert error to warning (#7698)
Browse files Browse the repository at this point in the history
Accidentally checked in #7697 with the failure mode as error, not warning
  • Loading branch information
steven-johnson committed Jul 24, 2023
1 parent 128bcdf commit 943bc5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ GeneratorParamInfo::GeneratorParamInfo(GeneratorBase *generator, const size_t si
case ObjectInstanceRegistry::GeneratorInput: {
if (outputs_seen) {
if (!generator->allow_out_of_order_inputs_and_outputs()) {
user_error << io_order_warning;
user_warning << io_order_warning;
}
}
auto *input = static_cast<Internal::GeneratorInputBase *>(instance);
Expand Down

0 comments on commit 943bc5f

Please sign in to comment.