diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-02 10:39:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-02 10:39:54 +0000 |
commit | 28284465a2ff445c029849b73fb589429698b525 (patch) | |
tree | 1a1605fc7eefeecb6080bd2d0f9359dd8c51e706 /include | |
parent | eeb77f4f0a498626f9eb11e8e32146f396c848c8 (diff) |
can't see this warning anymore
git-svn-id: http://svn.miranda-ng.org/main/trunk@13970 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_string.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_string.h b/include/m_string.h index 5fe5990fb9..82e279f31f 100644 --- a/include/m_string.h +++ b/include/m_string.h @@ -607,8 +607,8 @@ public: return _vscwprintf(pszFormat, args);
}
-#pragma warning (push)
-#pragma warning(disable : 4996)
+#pragma warning(push)
+#pragma warning(disable : 4995 4996)
static int __stdcall Format(LPWSTR pszBuffer, LPCWSTR pszFormat, va_list args)
{
return vswprintf(pszBuffer, pszFormat, args);
@@ -618,7 +618,7 @@ public: {
return _vsnwprintf(pszBuffer, nLength, pszFormat, args);
}
-#pragma warning (pop)
+#pragma warning(pop)
static int __stdcall GetBaseTypeLength(LPCSTR pszSrc)
{
|