diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/winapi/handle.hpp | 12 |
1 files changed, 4 insertions, 8 deletions
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 { |