make formatting for if-else more consistent

This commit is contained in:
LittleCube 2024-12-27 18:47:31 -05:00
parent 71eca4b045
commit 0e578a19b1

View file

@ -144,7 +144,8 @@ std::vector<N64Recomp::FunctionSize> get_func_sizes(const toml::array* func_size
throw toml::parse_error("Function size is not divisible by 4", el.source()); throw toml::parse_error("Function size is not divisible by 4", el.source());
} }
func_sizes.emplace_back(func_name.value(), func_size.value()); func_sizes.emplace_back(func_name.value(), func_size.value());
} else { }
else {
throw toml::parse_error("Manually sized function is missing required value(s)", el.source()); throw toml::parse_error("Manually sized function is missing required value(s)", el.source());
} }
} }