diff options
author | Orgad Shaneh <[email protected]> | 2015-04-20 17:42:34 +0300 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2015-04-20 14:51:56 +0000 |
commit | cb350bfeb26afaa047f74232b7afc3f143684ef6 (patch) | |
tree | dba299523c5055505cfdc2dc299d092a13094f74 /src/libs/cplusplus/LookupItem.h | |
parent | 9e1e11db60995bf4d826b1424802ce96a10e064f (diff) |
C++: Rename ClassOrNamespace -> LookupScope
Change-Id: Ide74482b133dd1fec40a725d9aa81bd749385f37
Reviewed-by: Nikolai Kosjar <[email protected]>
Diffstat (limited to 'src/libs/cplusplus/LookupItem.h')
-rw-r--r-- | src/libs/cplusplus/LookupItem.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/cplusplus/LookupItem.h b/src/libs/cplusplus/LookupItem.h index 46c7b34716b..13963b70643 100644 --- a/src/libs/cplusplus/LookupItem.h +++ b/src/libs/cplusplus/LookupItem.h @@ -37,7 +37,7 @@ namespace CPlusPlus { -class ClassOrNamespace; +class LookupScope; class CPLUSPLUS_EXPORT LookupItem { @@ -63,8 +63,8 @@ public: /// Sets this item's scope. void setScope(Scope *scope); - ClassOrNamespace *binding() const; - void setBinding(ClassOrNamespace *binding); + LookupScope *binding() const; + void setBinding(LookupScope *binding); bool operator == (const LookupItem &other) const; bool operator != (const LookupItem &other) const; @@ -73,7 +73,7 @@ private: FullySpecifiedType _type; Scope *_scope; Symbol *_declaration; - ClassOrNamespace *_binding; + LookupScope *_binding; }; uint qHash(const CPlusPlus::LookupItem &result); |