| 5673 | } |
| 5674 | |
| 5675 | void VmaJsonWriter::EndString(const char* pStr) |
| 5676 | { |
| 5677 | VMA_ASSERT(m_InsideString); |
| 5678 | if (pStr != VMA_NULL && pStr[0] != '\0') |
| 5679 | { |
| 5680 | ContinueString(pStr); |
| 5681 | } |
| 5682 | m_SB.Add('"'); |
| 5683 | m_InsideString = false; |
| 5684 | } |
| 5685 | |
| 5686 | void VmaJsonWriter::WriteNumber(uint32_t n) |
| 5687 | { |
no test coverage detected