From 60f601dc47363940d72d1c5b51714a63b7dcc481 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 16 May 2016 16:40:43 +0200 Subject: [PATCH] Warning Level 4 compliant --- include/WinStd/Common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/WinStd/Common.h b/include/WinStd/Common.h index 5c5d5d74..69b53c6e 100644 --- a/include/WinStd/Common.h +++ b/include/WinStd/Common.h @@ -63,8 +63,6 @@ inline int vsnprintf(_Out_z_cap_(capacity) wchar_t *str, _In_ size_t capacity, _ return _vsnwprintf(str, capacity, format, arg); } -#pragma warning(pop) - /// /// Formats string using `printf()`. @@ -100,6 +98,8 @@ inline int vsprintf(_Out_ std::basic_string<_Elem, _Traits, _Ax> &str, _In_z_ _P return count; } +#pragma warning(pop) + /// /// Formats string using `printf()`.