1780N/A--- ./lib/cpp/antlr/TokenRefCount.hpp.orig Mon Mar 18 11:58:26 2013
1780N/A+++ ./lib/cpp/antlr/TokenRefCount.hpp Mon Mar 18 11:58:52 2013
1780N/A@@ -84,9 +84,9 @@
1780N/A return *this;
1780N/A }
1780N/A
1780N/A- operator T* () const { return ref ? static_cast<T*>(ref->ptr) : 0; }
1780N/A- T* operator->() const { return ref ? static_cast<T*>(ref->ptr) : 0; }
1780N/A- T* get() const { return ref ? static_cast<T*>(ref->ptr) : 0; }
1780N/A+ operator T* () const { return ref ? static_cast<T* const>(ref->ptr) : 0; }
1780N/A+ T* operator->() const { return ref ? static_cast<T* const>(ref->ptr) : 0; }
1780N/A+ T* get() const { return ref ? static_cast<T* const>(ref->ptr) : 0; }
1780N/A };
1780N/A
1780N/A typedef TokenRefCount<Token> RefToken;
1780N/A--- ./lib/cpp/antlr/ASTRefCount.hpp.orig Mon Mar 18 11:59:16 2013
1780N/A+++ ./lib/cpp/antlr/ASTRefCount.hpp Mon Mar 18 11:59:28 2013
1780N/A@@ -84,9 +84,9 @@
1780N/A return *this;
1780N/A }
1780N/A
1780N/A- operator T* () const { return ref ? static_cast<T*>(ref->ptr) : 0; }
1780N/A- T* operator->() const { return ref ? static_cast<T*>(ref->ptr) : 0; }
1780N/A- T* get() const { return ref ? static_cast<T*>(ref->ptr) : 0; }
1780N/A+ operator T* () const { return ref ? static_cast<T* const>(ref->ptr) : 0; }
1780N/A+ T* operator->() const { return ref ? static_cast<T* const>(ref->ptr) : 0; }
1780N/A+ T* get() const { return ref ? static_cast<T* const>(ref->ptr) : 0; }
1780N/A };
1780N/A
1780N/A typedef ASTRefCount<AST> RefAST;