Warning Level 4 compliant

This commit is contained in:
Simon Rozman 2016-05-16 16:40:43 +02:00
parent 0392c57351
commit 60f601dc47

View File

@ -63,8 +63,6 @@ inline int vsnprintf(_Out_z_cap_(capacity) wchar_t *str, _In_ size_t capacity, _
return _vsnwprintf(str, capacity, format, arg); return _vsnwprintf(str, capacity, format, arg);
} }
#pragma warning(pop)
/// ///
/// Formats string using `printf()`. /// Formats string using `printf()`.
@ -100,6 +98,8 @@ inline int vsprintf(_Out_ std::basic_string<_Elem, _Traits, _Ax> &str, _In_z_ _P
return count; return count;
} }
#pragma warning(pop)
/// ///
/// Formats string using `printf()`. /// Formats string using `printf()`.