diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-02-23 07:44:18 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-02-23 07:44:18 +0000 |
commit | b11e52540166a2958439cfe562c25931e4460759 (patch) | |
tree | 89f2b199d92e61a7bc5bb56a6916ed6ce29a48d9 /lib/AST/Expr.cpp | |
parent | 25d0a0f67d9e949ffbfc57bf487012f5cbfd886e (diff) |
Seriously, are injected-class-names that hard?
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 326459046b..a1770c915a 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -2675,7 +2675,7 @@ namespace { public: explicit NonTrivialCallFinder(ASTContext &Context) - : EvaluatedExprVisitor(Context), NonTrivial(false) { } + : Inherited(Context), NonTrivial(false) { } bool hasNonTrivialCall() const { return NonTrivial; } |