From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 41DF43858D39; Thu, 10 Mar 2022 21:05:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 41DF43858D39 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-7603] libstdc++: Move closing brace outside #endif [PR104866] X-Act-Checkin: gcc X-Git-Author: Detlef Vollmann X-Git-Refname: refs/heads/master X-Git-Oldrev: 7c2ac3cebd5d41441e38142fca7ba5206f0d0027 X-Git-Newrev: b5417a0ba7e26bec2abf05cad6c6ef840a9be41c Message-Id: <20220310210506.41DF43858D39@sourceware.org> Date: Thu, 10 Mar 2022 21:05:06 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2022 21:05:06 -0000 https://gcc.gnu.org/g:b5417a0ba7e26bec2abf05cad6c6ef840a9be41c commit r12-7603-gb5417a0ba7e26bec2abf05cad6c6ef840a9be41c Author: Detlef Vollmann Date: Thu Mar 10 16:57:25 2022 +0000 libstdc++: Move closing brace outside #endif [PR104866] libstdc++-v3/ChangeLog: PR libstdc++/104866 * include/bits/this_thread_sleep.h: Fix order of #endif and closing brace of namespace. Diff: --- libstdc++-v3/include/bits/this_thread_sleep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/bits/this_thread_sleep.h b/libstdc++-v3/include/bits/this_thread_sleep.h index 86bc6ffd632..712de5a6ff9 100644 --- a/libstdc++-v3/include/bits/this_thread_sleep.h +++ b/libstdc++-v3/include/bits/this_thread_sleep.h @@ -105,8 +105,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __now = _Clock::now(); } } - } // namespace this_thread #endif // ! NO_SLEEP + } // namespace this_thread /// @}