Minor code review feedback

This commit is contained in:
Chuck Walbourn
2018-06-06 01:41:15 -07:00
parent f6506c1216
commit 31476315a0
7 changed files with 7 additions and 7 deletions

View File

@@ -359,7 +359,7 @@ namespace
struct find_closer { void operator()(HANDLE h) { assert(h != INVALID_HANDLE_VALUE); if (h) FindClose(h); } };
typedef public std::unique_ptr<void, find_closer> ScopedFindHandle;
typedef std::unique_ptr<void, find_closer> ScopedFindHandle;
#pragma prefast(disable : 26018, "Only used with static internal arrays")