diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-14 10:42:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-14 10:42:03 +0000 |
commit | 8a6d8371abe209ada8ef131305b18967b3fe3c81 (patch) | |
tree | b4606b8d3e207c4783a867cb53e34e9319ac77ed /include | |
parent | 09934120a7e3b080f5f79f26da3b3bc2946753ee (diff) |
fix for level 4 warnings
git-svn-id: http://svn.miranda-ng.org/main/trunk@11396 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index b2953f2af6..c903bd60d3 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -59,13 +59,13 @@ struct PROTO_INTERFACE : public MZeroedObject //////////////////////////////////////////////////////////////////////////////////////
// Helpers
- __forceinline void debugLogA(LPCSTR szFormat, ...)
+ __inline void debugLogA(LPCSTR szFormat, ...)
{
va_list args;
va_start(args, szFormat);
ProtoLogA(this, szFormat, args);
}
- __forceinline void debugLogW(LPCWSTR wszFormat, ...)
+ __inline void debugLogW(LPCWSTR wszFormat, ...)
{
va_list args;
va_start(args, wszFormat);
|