diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-19 15:30:47 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-11-19 15:30:47 +0000 |
commit | f0f5dcabc9e151952443efa16bd95befbb36cbaf (patch) | |
tree | 7cd387222c5402d0857599a5d2740a06307504aa /src/modules/json/JSONNode.h | |
parent | b0b7cd90e972155a488b017eae3122ca8ac11ca8 (diff) |
tabs and spaces cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2377 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/json/JSONNode.h')
-rw-r--r-- | src/modules/json/JSONNode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/json/JSONNode.h b/src/modules/json/JSONNode.h index 0c4f19d08d..3552f9f73c 100644 --- a/src/modules/json/JSONNode.h +++ b/src/modules/json/JSONNode.h @@ -61,7 +61,7 @@ #define DECLARE_FOR_ALL_TYPES_CONST(foo)\ foo(char) const; foo(unsigned char) const;\ foo(short) const; foo(unsigned short) const;\ - foo(int)const; foo(unsigned int) const;\ + foo(int) const; foo(unsigned int) const;\ foo(long) const; foo(unsigned long) const;\ foo(float) const; foo(double) const;\ foo(bool) const;\ @@ -72,7 +72,7 @@ #define IMPLEMENT_FOR_ALL_NUMBERS(foo)\ foo(char) foo(unsigned char)\ foo(short) foo(unsigned short)\ - foo(int)foo(unsigned int)\ + foo(int) foo(unsigned int)\ foo(long) foo(unsigned long)\ foo(float) foo(double) |