| 5738 | } |
| 5739 | |
| 5740 | void VmaJsonWriter::EndObject() |
| 5741 | { |
| 5742 | VMA_ASSERT(!m_InsideString); |
| 5743 | |
| 5744 | WriteIndent(true); |
| 5745 | m_SB.Add('}'); |
| 5746 | |
| 5747 | VMA_ASSERT(!m_Stack.empty() && m_Stack.back().type == COLLECTION_TYPE_OBJECT); |
| 5748 | m_Stack.pop_back(); |
| 5749 | } |
| 5750 | |
| 5751 | void VmaJsonWriter::BeginArray(bool singleLine) |
| 5752 | { |
no test coverage detected