Browse Source

*** empty log message ***

David Rose 25 years ago
parent
commit
caf5e1eb06
2 changed files with 2 additions and 2 deletions
  1. 1 1
      panda/src/putil/pointerToArray.I
  2. 1 1
      panda/src/putil/pointerToArray.h

+ 1 - 1
panda/src/putil/pointerToArray.I

@@ -316,7 +316,7 @@ erase(iterator first, iterator last) const {
   _ptr->erase(first, last);
 }
 
-#if !defined(WIN32_VC) || defined(CPPPARSER)
+#if !defined(WIN32_VC)
 ////////////////////////////////////////////////////////////////////
 //     Function: PointerToArray::Indexing operator
 //       Access: Published

+ 1 - 1
panda/src/putil/pointerToArray.h

@@ -130,7 +130,7 @@ public:
   INLINE void erase(iterator first, iterator last) const;
 
 PUBLISHED:
-#if !defined(WIN32_VC) || defined(CPPPARSER)
+#if !defined(WIN32_VC)
   INLINE reference operator [](size_type n) const;
 #endif
   INLINE void push_back(const Element &x);