We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef2451 commit 58aab4bCopy full SHA for 58aab4b
GodotPlugin/include/utilities.hpp
@@ -26,7 +26,7 @@ std::vector<std::pair<std::string, std::vector<std::string>>>
26
convert_section_to_section_internal(Array section)
27
{
28
std::vector<std::pair<std::string, std::vector<std::string>>>
29
- sectionInternal;
+ section_internal;
30
31
for (auto i = 0; i < section.size(); i += 1)
32
@@ -53,11 +53,11 @@ convert_section_to_section_internal(Array section)
53
}
54
55
56
- sectionInternal.push_back(
+ section_internal.push_back(
57
std::make_pair(key.utf8().get_data(), valuesInternal));
58
59
60
61
62
- return sectionInternal;
+ return section_internal;
63
0 commit comments