| 6217 | } |
| 6218 | |
| 6219 | void VmaJsonWriter::EndString(const char* pStr) |
| 6220 | { |
| 6221 | VMA_ASSERT(m_InsideString); |
| 6222 | if (pStr != VMA_NULL && pStr[0] != '\0') |
| 6223 | { |
| 6224 | ContinueString(pStr); |
| 6225 | } |
| 6226 | m_SB.Add('"'); |
| 6227 | m_InsideString = false; |
| 6228 | } |
| 6229 | |
| 6230 | void VmaJsonWriter::WriteNumber(uint32_t n) |
| 6231 | { |
no test coverage detected