From 88a8b7d093f357390065283dd08dac6459685726 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sun, 28 Aug 2016 12:21:20 +0200 Subject: [PATCH] Incorrect handle type fixed --- include/WinStd/Win.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/WinStd/Win.h b/include/WinStd/Win.h index eb17eba3..6e7a5a54 100644 --- a/include/WinStd/Win.h +++ b/include/WinStd/Win.h @@ -343,7 +343,7 @@ namespace winstd /// /// Initializes a new class instance with the object handle set to NULL. /// - inline win_handle() : handle() {} + inline win_handle() : handle() {} /// /// Initializes a new class instance with an already available object handle. @@ -357,7 +357,7 @@ namespace winstd /// /// \param[inout] h A rvalue reference of another object /// - inline win_handle(_Inout_ win_handle &&h) : handle(std::move(h)) {} + inline win_handle(_Inout_ win_handle &&h) : handle(std::move(h)) {} /// /// Closes an open object handle.