aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-06 20:58:07 +0000
committerChris Lattner <sabre@nondot.org>2009-12-06 20:58:07 +0000
commit1ade4ca0aa9331c2388cca9becad1357a154ae34 (patch)
treec858d31b3a033c32ae3d0f737b17252b5a3ad35d /include/clang/Parse/Action.h
parentd7d7f67c1dd8626520bb243d3928f59d32424534 (diff)
revert my previous patch, it is breaking something and I don't have time
to fix it ATM. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index 200bd8a6b2..fc56cc6847 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -334,20 +334,6 @@ public:
bool EnteringContext) {
return 0;
}
-
- /// IsInvalidUnlessNestedName - This method is used for error recovery
- /// purposes to determine whether the specified identifier is only valid as
- /// a nested name specifier, for example a namespace name. It is
- /// conservatively correct to always return false from this method.
- ///
- /// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
- virtual bool IsInvalidUnlessNestedName(Scope *S,
- const CXXScopeSpec &SS,
- IdentifierInfo &II,
- TypeTy *ObjectType,
- bool EnteringContext) {
- return false;
- }
/// ActOnCXXNestedNameSpecifier - Called during parsing of a
/// nested-name-specifier that involves a template-id, e.g.,