add onlyDecrease to enums

This commit is contained in:
skyoct 2023-12-19 15:23:20 +00:00
parent 7cbb4ad724
commit 00576d2092

View File

@ -25,6 +25,7 @@ static std::vector<std::pair<String, Int8>> getTypeEnumsAndValues()
return std::vector<std::pair<String, Int8>>{ return std::vector<std::pair<String, Int8>>{
{"Full", static_cast<Int8>(RuntimeReloadType::FULL)}, {"Full", static_cast<Int8>(RuntimeReloadType::FULL)},
{"OnlyIncrease", static_cast<Int8>(RuntimeReloadType::ONLY_INCREASE)}, {"OnlyIncrease", static_cast<Int8>(RuntimeReloadType::ONLY_INCREASE)},
{"OnlyDecrease", static_cast<Int8>(RuntimeReloadType::ONLY_DECREASE)},
{"No", static_cast<Int8>(RuntimeReloadType::NO)}, {"No", static_cast<Int8>(RuntimeReloadType::NO)},
}; };
} }