mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
*uppsrc: Fixed many GCC warnings
git-svn-id: svn://ultimatepp.org/upp/trunk@4457 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
5de4dcba84
commit
d5291b7d48
54 changed files with 6963 additions and 6971 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue