From 129872349c480560a944a3f01e65648f627fe3f5 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Mon, 10 Jul 2017 00:08:37 -0700 Subject: [PATCH] Code review feedback --- Src/PlatformHelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/PlatformHelpers.h b/Src/PlatformHelpers.h index 2249b80..8cc3379 100644 --- a/Src/PlatformHelpers.h +++ b/Src/PlatformHelpers.h @@ -74,7 +74,7 @@ namespace DirectX struct handle_closer { void operator()(HANDLE h) { if (h) CloseHandle(h); } }; - typedef public std::unique_ptr ScopedHandle; + typedef std::unique_ptr ScopedHandle; inline HANDLE safe_handle( HANDLE h ) { return (h == INVALID_HANDLE_VALUE) ? 0 : h; } }