Util: Rename Array m_values -> m_elements

This commit is contained in:
Riyyi
2022-07-12 11:06:46 +02:00
parent aa283f8c75
commit 5835c63bda
4 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ std::string Serializer::dumpArray(const Value& value, const uint32_t indentLevel
result += '\n';
}
auto values = value.asArray().values();
auto values = value.asArray().elements();
for (auto it = values.begin(); it != values.end(); ++it) {
result += std::string(m_indent * (indentLevel + 1), m_indentCharacter);
result += dumpHelper(*it, indentLevel + 1);