Index: src/handles.h |
=================================================================== |
--- src/handles.h (revision 2368) |
+++ src/handles.h (working copy) |
@@ -42,7 +42,7 @@ |
template<class T> |
class Handle { |
public: |
- INLINE(Handle(T** location)) { location_ = location; } |
+ INLINE(Handle(T** location)) { location_ = location; } |
INLINE(explicit Handle(T* obj)); |
INLINE(Handle()) : location_(NULL) {} |
@@ -59,7 +59,7 @@ |
location_ = reinterpret_cast<T**>(handle.location()); |
} |
- INLINE(T* operator ->() const) { return operator*(); } |
+ INLINE(T* operator ->() const) { return operator*(); } |
// Check if this handle refers to the exact same object as the other handle. |
bool is_identical_to(const Handle<T> other) const { |