diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-14 18:46:38 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-14 18:46:38 +0000 |
commit | 31ba819bd0994a0a48a174cba37b5985522ff3f8 (patch) | |
tree | c397b2c2c1268983f3beb4b12bc62567173e37a1 /protocols/SkypeWeb/src | |
parent | 866c9312c9ccc828e74158c73f246767926d22a9 (diff) |
warning fix (functions with variable arguments lists could not be inlined)
git-svn-id: http://svn.miranda-ng.org/main/trunk@12826 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src')
-rw-r--r-- | protocols/SkypeWeb/src/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/http_request.h b/protocols/SkypeWeb/src/http_request.h index 532c8cf61c..bc58405fb0 100644 --- a/protocols/SkypeWeb/src/http_request.h +++ b/protocols/SkypeWeb/src/http_request.h @@ -41,7 +41,7 @@ struct CHAR_VALUE : public VALUE struct FORMAT_VALUE : public VALUE
{
CMStringA szValue;
- __forceinline FORMAT_VALUE(LPCSTR _name, LPCSTR _valueFormat, ...)
+ FORMAT_VALUE(LPCSTR _name, LPCSTR _valueFormat, ...)
: VALUE(_name)
{
va_list args;
|