Skip to content

Commit 58aab4b

Browse files
committed
Renamed variable.
1 parent 5ef2451 commit 58aab4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GodotPlugin/include/utilities.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ std::vector<std::pair<std::string, std::vector<std::string>>>
2626
convert_section_to_section_internal(Array section)
2727
{
2828
std::vector<std::pair<std::string, std::vector<std::string>>>
29-
sectionInternal;
29+
section_internal;
3030

3131
for (auto i = 0; i < section.size(); i += 1)
3232
{
@@ -53,11 +53,11 @@ convert_section_to_section_internal(Array section)
5353
}
5454
}
5555

56-
sectionInternal.push_back(
56+
section_internal.push_back(
5757
std::make_pair(key.utf8().get_data(), valuesInternal));
5858
}
5959
}
6060
}
6161

62-
return sectionInternal;
62+
return section_internal;
6363
}

0 commit comments

Comments
 (0)