| 1389 | } |
| 1390 | |
| 1391 | void JsonWriter::EndArray() |
| 1392 | { |
| 1393 | D3D12MA_ASSERT(!m_InsideString); |
| 1394 | D3D12MA_ASSERT(!m_Stack.empty() && m_Stack.back().type == COLLECTION_TYPE_ARRAY); |
| 1395 | |
| 1396 | WriteIndent(true); |
| 1397 | m_SB.Add(L']'); |
| 1398 | |
| 1399 | m_Stack.pop_back(); |
| 1400 | } |
| 1401 | |
| 1402 | void JsonWriter::WriteString(LPCWSTR pStr) |
| 1403 | { |
no test coverage detected