0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-26 21:04:25 +08:00

Fix indentation changes

This commit is contained in:
Arseny Kapoulkine 2023-10-15 19:25:56 -07:00
parent 76dec417a6
commit 94b19a3c45

View File

@ -8100,12 +8100,12 @@ PUGI_IMPL_NS_BEGIN
} }
} }
const char_t* c_str() const const char_t* c_str() const
{ {
return _buffer; return _buffer;
} }
size_t length() const size_t length() const
{ {
return _uses_heap ? _length_heap : strlength(_buffer); return _uses_heap ? _length_heap : strlength(_buffer);
} }
@ -8128,7 +8128,7 @@ PUGI_IMPL_NS_BEGIN
return const_cast<char_t*>(_buffer); return const_cast<char_t*>(_buffer);
} }
bool empty() const bool empty() const
{ {
return *_buffer == 0; return *_buffer == 0;
} }