generated gauges do not depend on constexpr

This commit is contained in:
rusefi 2023-02-13 16:26:10 -05:00
parent 9911f237ba
commit 28988af9a6
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -136,13 +136,13 @@ public class LiveDataProcessor {
outputValueConsumer.conditional = conditional;
state.addDestination((state1, structure) -> outputValueConsumer.handleEndStruct(state1, structure));
state.addDestination(new ConfigurationConsumer() {
@Override
public void handleEndStruct(ReaderState readerState, ConfigStructure structure) throws IOException {
gaugeConsumer.handleEndStruct(readerState, structure);
}
});
}
state.addDestination(new ConfigurationConsumer() {
@Override
public void handleEndStruct(ReaderState readerState, ConfigStructure structure) throws IOException {
gaugeConsumer.handleEndStruct(readerState, structure);
}
});
state.doJob();