Skip to content

Commit a91e5ea

Browse files
committed
Explicit type
1 parent a0e4ceb commit a91e5ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openvic-simulation/country/CountryInstance.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ bool CountryInstance::apply_history_to_country(
713713
ret &= set_technology_unlock_level(*technology, level);
714714
}
715715

716-
for (auto const& invention : invention_manager.get_inventions()) {
716+
for (Invention const& invention : invention_manager.get_inventions()) {
717717
const bool is_condition_met = false; //check invention.get_limit()
718718
if(is_condition_met) {
719719
ret &= set_invention_unlock_level(invention, 1);

0 commit comments

Comments
 (0)