Skip to content

Commit

Permalink
Fix indentation changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zeux committed Oct 16, 2023
1 parent 76dec41 commit 94b19a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pugixml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -8128,7 +8128,7 @@ PUGI_IMPL_NS_BEGIN
return const_cast<char_t*>(_buffer);
}

bool empty() const
bool empty() const
{
return *_buffer == 0;
}
Expand Down

0 comments on commit 94b19a3

Please sign in to comment.