| 6101 | } |
| 6102 | |
| 6103 | void VmaJsonWriter::EndObject() |
| 6104 | { |
| 6105 | VMA_ASSERT(!m_InsideString); |
| 6106 | |
| 6107 | WriteIndent(true); |
| 6108 | m_SB.Add('}'); |
| 6109 | |
| 6110 | VMA_ASSERT(!m_Stack.empty() && m_Stack.back().type == COLLECTION_TYPE_OBJECT); |
| 6111 | m_Stack.pop_back(); |
| 6112 | } |
| 6113 | |
| 6114 | void VmaJsonWriter::BeginArray(bool singleLine) |
| 6115 | { |
no test coverage detected