diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-21 02:45:19 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-21 02:45:19 +0000 |
commit | cf4bdde33a0450f212e7577b71a7bcfe5213cb15 (patch) | |
tree | 0f26b261f986553682e4a0eb67867313b41c15f5 /clang/include | |
parent | 8d981962c043ed5111f8e941a1501e100e54f8f7 (diff) | |
download | bcm5719-llvm-cf4bdde33a0450f212e7577b71a7bcfe5213cb15.tar.gz bcm5719-llvm-cf4bdde33a0450f212e7577b71a7bcfe5213cb15.zip |
Cleanup: remove artificial division between lookup results and const lookup
results. No-one was ever modifying a lookup result, and it would not be
reasonable to do so.
llvm-svn: 230123
Diffstat (limited to 'clang/include')
-rw-r--r-- | clang/include/clang/AST/DeclBase.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/include/clang/AST/DeclBase.h b/clang/include/clang/AST/DeclBase.h index ad3f0f88127..121bd005353 100644 --- a/clang/include/clang/AST/DeclBase.h +++ b/clang/include/clang/AST/DeclBase.h @@ -1063,9 +1063,6 @@ public: } }; -// FIXME: Remove this. -typedef DeclContextLookupResult DeclContextLookupConstResult; - /// DeclContext - This is used only as base class of specific decl types that /// can act as declaration contexts. These decls are (only the top classes /// that directly derive from DeclContext are mentioned, not their subclasses): @@ -1580,10 +1577,6 @@ public: typedef DeclContextLookupResult lookup_result; typedef lookup_result::iterator lookup_iterator; - // FIXME: Remove these. - typedef lookup_result lookup_const_result; - typedef lookup_iterator lookup_const_iterator; - /// lookup - Find the declarations (if any) with the given Name in /// this context. Returns a range of iterators that contains all of /// the declarations with this name, with object, function, member, |