Skip to content
Snippets Groups Projects
Unverified Commit 91ae4685 authored by Jonathan Wakely's avatar Jonathan Wakely Committed by Jonathan Wakely
Browse files

libstdc++: Fix indentation of lines that follow a [[likely]] attribute

libstdc++-v3/ChangeLog:

	* include/std/text_encoding: Fix indentation.
parent 20c63093
No related branches found
No related tags found
No related merge requests found
...@@ -518,7 +518,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -518,7 +518,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
operator++() operator++()
{ {
if (_M_dereferenceable()) [[likely]] if (_M_dereferenceable()) [[likely]]
++_M_rep; ++_M_rep;
else else
{ {
__glibcxx_assert(_M_dereferenceable()); __glibcxx_assert(_M_dereferenceable());
...@@ -533,7 +533,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -533,7 +533,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
const bool __decrementable const bool __decrementable
= _M_rep != nullptr && _M_rep[-1]._M_id == _M_id; = _M_rep != nullptr && _M_rep[-1]._M_id == _M_id;
if (__decrementable) [[likely]] if (__decrementable) [[likely]]
--_M_rep; --_M_rep;
else else
{ {
__glibcxx_assert(__decrementable); __glibcxx_assert(__decrementable);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment