Reverted ++ operators not related to battle_util.c, battle_util2.c, or battle_main.c

This commit is contained in:
Eduardo Quezada
2022-08-08 16:05:16 -04:00
parent ac973aa38d
commit 2cda0b61ce
43 changed files with 341 additions and 341 deletions
+2 -2
View File
@@ -2811,7 +2811,7 @@ class Renderer {
if ((bc.flags & Bytecode::Flag::ValueMask) != Bytecode::Flag::ValuePop) {
popArgs -= 1;
}
for (unsigned int i = 0; i < popArgs; i++) {
for (unsigned int i = 0; i < popArgs; ++i) {
m_stack.pop_back();
}
}
@@ -2925,7 +2925,7 @@ class Renderer {
void render_to(std::ostream& os, const Template& tmpl, const json& data) {
m_data = &data;
for (size_t i = 0; i < tmpl.bytecodes.size(); i++) {
for (size_t i = 0; i < tmpl.bytecodes.size(); ++i) {
const auto& bc = tmpl.bytecodes[i];
switch (bc.op) {