From 1b6e5d984bad351f7ec96687854bfc52cfc83dac Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 14 Oct 2020 02:01:37 +0300 Subject: add .clang-format --- include/winapi/handle.hpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'include/winapi/handle.hpp') diff --git a/include/winapi/handle.hpp b/include/winapi/handle.hpp index 9e9661b..9714db3 100644 --- a/include/winapi/handle.hpp +++ b/include/winapi/handle.hpp @@ -21,15 +21,11 @@ class Handle { public: Handle() = default; - explicit Handle(HANDLE raw) - : impl{raw} - { } + explicit Handle(HANDLE raw) : impl{raw} {} - Handle(Handle&& other) BOOST_NOEXCEPT_OR_NOTHROW { - swap(other); - } + Handle(Handle&& other) BOOST_NOEXCEPT_OR_NOTHROW { swap(other); } - Handle& operator=(Handle other) BOOST_NOEXCEPT_OR_NOTHROW { + Handle& operator=(Handle other) BOOST_NOEXCEPT_OR_NOTHROW { swap(other); return *this; } @@ -61,7 +57,7 @@ inline void swap(Handle& a, Handle& b) BOOST_NOEXCEPT_OR_NOTHROW { a.swap(b); } -} +} // namespace winapi namespace std { -- cgit v1.2.3