Skip to content

Commit ff39385

Browse files
Added a minor comment based on #463
1 parent f792971 commit ff39385

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/vk_mem_alloc.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5631,6 +5631,7 @@ class VmaStringBuilder
56315631
~VmaStringBuilder() = default;
56325632

56335633
size_t GetLength() const { return m_Data.size(); }
5634+
// Returned string is not null-terminated!
56345635
const char* GetData() const { return m_Data.data(); }
56355636
void AddNewLine() { Add('\n'); }
56365637
void Add(char ch) { m_Data.push_back(ch); }

0 commit comments

Comments
 (0)