Browse Source

Fix case of two include

philippelatulippe 14 years ago
parent
commit
3c1bf3ca8e
  1. 4
      Sources/Plasma/NucleusLib/pnUtils/Private/pnUtUuid.h

4
Sources/Plasma/NucleusLib/pnUtils/Private/pnUtUuid.h

@ -80,7 +80,7 @@ bool GuidFromHex (const byte buf[], unsigned length, Uuid * uuid);
* *
***/ ***/
#include <PshPack1.h> #include <pshpack1.h>
struct Uuid { struct Uuid {
union { union {
dword dwords[4]; dword dwords[4];
@ -98,6 +98,6 @@ struct Uuid {
inline bool operator != (const Uuid & rhs) const { return !GuidsAreEqual(*this, rhs); } inline bool operator != (const Uuid & rhs) const { return !GuidsAreEqual(*this, rhs); }
inline bool operator != (int rhs) const { ASSERT(!rhs); return !GuidsAreEqual(*this, kNilGuid); } inline bool operator != (int rhs) const { ASSERT(!rhs); return !GuidsAreEqual(*this, kNilGuid); }
}; };
#include <PopPack.h> #include <poppack.h>

Loading…
Cancel
Save