fixes for 32 and 64-bit builds both being able to build

This commit is contained in:
Chris Brunner 2010-05-28 23:22:43 +00:00
parent 0e539de89a
commit c87f384a40
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ reassign(const WeakPointerToBase<To> &copy) {
}
#ifndef CPPPARSER
#if !defined(WIN32_VC) && !defined(WIN64_VC)
#ifndef WIN32_VC
////////////////////////////////////////////////////////////////////
// Function: WeakPointerToBase::Equivalence operator
// Access: Public

View File

@ -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;