.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@10243 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-09-26 17:27:40 +00:00
parent de08b35b62
commit e528f076e9
4 changed files with 20 additions and 20 deletions

View file

@ -167,7 +167,7 @@ struct IniBool;
namespace Ini {
extern IniBool user_log;
};
}
#define USRLOG(x) LOG_(Ini::user_log, x)

View file

@ -178,25 +178,25 @@ inline void AssertMoveable(T *t = 0) { if(t) AssertMoveable0(t); }
#endif
NTL_MOVEABLE(bool);
NTL_MOVEABLE(char);
NTL_MOVEABLE(signed char);
NTL_MOVEABLE(unsigned char);
NTL_MOVEABLE(short);
NTL_MOVEABLE(unsigned short);
NTL_MOVEABLE(int);
NTL_MOVEABLE(unsigned int);
NTL_MOVEABLE(long);
NTL_MOVEABLE(unsigned long);
NTL_MOVEABLE(int64);
NTL_MOVEABLE(uint64);
NTL_MOVEABLE(float);
NTL_MOVEABLE(double);
NTL_MOVEABLE(void *);
NTL_MOVEABLE(const void *);
NTL_MOVEABLE(bool)
NTL_MOVEABLE(char)
NTL_MOVEABLE(signed char)
NTL_MOVEABLE(unsigned char)
NTL_MOVEABLE(short)
NTL_MOVEABLE(unsigned short)
NTL_MOVEABLE(int)
NTL_MOVEABLE(unsigned int)
NTL_MOVEABLE(long)
NTL_MOVEABLE(unsigned long)
NTL_MOVEABLE(int64)
NTL_MOVEABLE(uint64)
NTL_MOVEABLE(float)
NTL_MOVEABLE(double)
NTL_MOVEABLE(void *)
NTL_MOVEABLE(const void *)
#if defined(_NATIVE_WCHAR_T_DEFINED) || defined(COMPILER_GCC)
NTL_MOVEABLE(wchar_t);
NTL_MOVEABLE(wchar_t)
#endif
template <class T, class B = EmptyClass>

View file

@ -225,7 +225,7 @@ public:
void Shrink();
rval_default(XmlNode);
rval_default(XmlNode)
XmlNode(const XmlNode& n, int);

View file

@ -113,6 +113,6 @@ String CoZstdDecompress(const String& s, EventGate<int64, int64> progress = fals
bool IsZstd(Stream& s);
};
}
#endif