We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 700b350 commit 9f24fd8Copy full SHA for 9f24fd8
1 file changed
src/main/dumpers/schemas/schemas.cpp
@@ -215,7 +215,8 @@ void Dump()
215
216
std::map<std::string, std::unordered_set<std::string>> foundFiles;
217
218
- for (auto i = 0; i < typeScopes.GetNumStrings(); ++i)
+ // still can't use GetNumStrings on dota
219
+ for (auto i = 0; i < typeScopes.m_Vector.Count(); ++i)
220
DumpTypeScope(typeScopes[i], schemaPath, foundFiles);
221
222
DumpTypeScope(schemaSystem->GlobalTypeScope(), schemaPath, foundFiles);
0 commit comments