fixes for 32 and 64-bit builds both being able to build
This commit is contained in:
parent
0e539de89a
commit
c87f384a40
|
|
@ -125,7 +125,7 @@ reassign(const WeakPointerToBase<To> ©) {
|
|||
}
|
||||
|
||||
#ifndef CPPPARSER
|
||||
#if !defined(WIN32_VC) && !defined(WIN64_VC)
|
||||
#ifndef WIN32_VC
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: WeakPointerToBase::Equivalence operator
|
||||
// Access: Public
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public:
|
|||
// These comparison functions are common to all things PointerTo, so
|
||||
// they're defined up here.
|
||||
#ifndef CPPPARSER
|
||||
#if !defined(WIN32_VC) || !defined(WIN64_VC)
|
||||
#ifndef WIN32_VC
|
||||
INLINE bool operator == (const To *other) const;
|
||||
INLINE bool operator != (const To *other) const;
|
||||
INLINE bool operator > (const To *other) const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue