diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-10-03 17:35:38 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-10-21 11:54:00 +0100 |
commit | 77209d43f1f38f153863a1845b64542cca79c2cb (patch) | |
tree | 0354fac9a20510f97fb1ab2b5c0f15d0569b6490 | |
parent | 57cbb1d3344116020e7448305d2aa904c1a4cd85 (diff) | |
download | gcc-77209d43f1f38f153863a1845b64542cca79c2cb.zip gcc-77209d43f1f38f153863a1845b64542cca79c2cb.tar.gz gcc-77209d43f1f38f153863a1845b64542cca79c2cb.tar.bz2 |
libstdc++: Fix formatting of filesystem directory iterators
Fix indentation.
libstdc++-v3/ChangeLog:
* include/bits/fs_dir.h (operator==(default_sentinel_t)): Fix
indentation.
-rw-r--r-- | libstdc++-v3/include/bits/fs_dir.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libstdc++-v3/include/bits/fs_dir.h b/libstdc++-v3/include/bits/fs_dir.h index 9dd0f89..3b0a493 100644 --- a/libstdc++-v3/include/bits/fs_dir.h +++ b/libstdc++-v3/include/bits/fs_dir.h @@ -449,10 +449,10 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11 } #if __cplusplus >= 202002L - // _GLIBCXX_RESOLVE_LIB_DEFECTS - // 3719. Directory iterators should be usable with default sentinel - bool operator==(default_sentinel_t) const noexcept - { return !_M_dir; } + // _GLIBCXX_RESOLVE_LIB_DEFECTS + // 3719. Directory iterators should be usable with default sentinel + bool operator==(default_sentinel_t) const noexcept + { return !_M_dir; } #endif #if __cpp_impl_three_way_comparison < 201907L @@ -565,10 +565,10 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11 } #if __cplusplus >= 202002L - // _GLIBCXX_RESOLVE_LIB_DEFECTS - // 3719. Directory iterators should be usable with default sentinel - bool operator==(default_sentinel_t) const noexcept - { return !_M_dirs; } + // _GLIBCXX_RESOLVE_LIB_DEFECTS + // 3719. Directory iterators should be usable with default sentinel + bool operator==(default_sentinel_t) const noexcept + { return !_M_dirs; } #endif #if __cpp_impl_three_way_comparison < 201907L |