1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Fix a whole bunch of clang warnings.

This commit is contained in:
Darryl Pogue
2012-12-15 16:46:20 -08:00
parent ca87b47ca8
commit 4221b57baa
11 changed files with 23 additions and 13 deletions

View File

@ -99,6 +99,8 @@ public:
kPositional = 0x80
};
virtual ~plShadowSlave() { }
void SetFlag(SlaveFlag f, bool on) { if(on) fFlags |= f; else fFlags &= ~f; }
bool HasFlag(SlaveFlag f) const { return 0 != (fFlags & f); }