diff options
author | David Blaikie <dblaikie@gmail.com> | 2012-08-10 00:55:35 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2012-08-10 00:55:35 +0000 |
commit | 4ef832ffc1147ce2f9777f9fad650cb3139a1d00 (patch) | |
tree | dc93f3b50bb92e4186c00d1311690f5325daa33f /lib/Sema/SemaLambda.cpp | |
parent | 74896e074856c3248d88ddddf45bfda7256ab022 (diff) |
Provide isConst/Volatile on CXXMethodDecl.
This also provides isConst/Volatile/Restrict on FunctionTypes to coalesce
the implementation with other callers (& update those other callers).
Patch contributed by Sam Panzer (panzer@google.com).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaLambda.cpp')
-rw-r--r-- | lib/Sema/SemaLambda.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaLambda.cpp b/lib/Sema/SemaLambda.cpp index 3a10c2af91..6414c6fbac 100644 --- a/lib/Sema/SemaLambda.cpp +++ b/lib/Sema/SemaLambda.cpp @@ -437,7 +437,7 @@ void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro, LambdaScopeInfo *LSI = enterLambdaScope(Method, Intro.Range, Intro.Default, ExplicitParams, ExplicitResultType, - (Method->getTypeQualifiers() & Qualifiers::Const) == 0); + !Method->isConst()); // Handle explicit captures. SourceLocation PrevCaptureLoc |