From 94b19a3c455d78d3084fc2b50ec9a4c7a4739b49 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sun, 15 Oct 2023 19:25:56 -0700 Subject: [PATCH] Fix indentation changes --- src/pugixml.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pugixml.cpp b/src/pugixml.cpp index ddd7562..1a89b28 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -8100,12 +8100,12 @@ PUGI_IMPL_NS_BEGIN } } - const char_t* c_str() const + const char_t* c_str() const { return _buffer; } - size_t length() const + size_t length() const { return _uses_heap ? _length_heap : strlength(_buffer); } @@ -8128,7 +8128,7 @@ PUGI_IMPL_NS_BEGIN return const_cast(_buffer); } - bool empty() const + bool empty() const { return *_buffer == 0; }