| 1375 | } |
| 1376 | |
| 1377 | void JsonWriter::BeginArray(bool singleLine) |
| 1378 | { |
| 1379 | D3D12MA_ASSERT(!m_InsideString); |
| 1380 | |
| 1381 | BeginValue(false); |
| 1382 | m_SB.Add(L'['); |
| 1383 | |
| 1384 | StackItem stackItem; |
| 1385 | stackItem.type = COLLECTION_TYPE_ARRAY; |
| 1386 | stackItem.valueCount = 0; |
| 1387 | stackItem.singleLineMode = singleLine; |
| 1388 | m_Stack.push_back(stackItem); |
| 1389 | } |
| 1390 | |
| 1391 | void JsonWriter::EndArray() |
| 1392 | { |
no test coverage detected