*uppsrc: Fixed many GCC warnings

git-svn-id: svn://ultimatepp.org/upp/trunk@4457 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-01-21 14:24:31 +00:00
parent 5de4dcba84
commit d5291b7d48
54 changed files with 6963 additions and 6971 deletions

View file

@ -212,10 +212,10 @@ public:
Stream& operator/(WString& s);
void Pack(dword& i);
Stream& operator/(int& i) { dword w = i + 1; Pack(w); i = w - 1; return *this; }
Stream& operator/(unsigned int& i) { dword w = i + 1; Pack(w); i = w - 1; return *this; }
Stream& operator/(long& i) { dword w = i + 1; Pack(w); i = w - 1; return *this; }
Stream& operator/(unsigned long& i) { dword w = i + 1; Pack(w); i = w - 1; return *this; }
Stream& operator/(int& i);
Stream& operator/(unsigned int& i);
Stream& operator/(long& i);
Stream& operator/(unsigned long& i);
void Magic(dword magic = 0x7d674d7b);