diff options
author | Anastasia Stulova <anastasia.stulova@arm.com> | 2019-01-28 11:37:49 +0000 |
---|---|---|
committer | Anastasia Stulova <anastasia.stulova@arm.com> | 2019-01-28 11:37:49 +0000 |
commit | c61eaa5920161789f273256a718b9d47a97d00cd (patch) | |
tree | a6b965cfd716315ba53e2c8ffb1291ebded7fedb /clang/lib/Parse/ParseCXXInlineMethods.cpp | |
parent | 740974d984376c57f59842198a6e8ba68b022ee3 (diff) | |
download | bcm5719-llvm-c61eaa5920161789f273256a718b9d47a97d00cd.tar.gz bcm5719-llvm-c61eaa5920161789f273256a718b9d47a97d00cd.zip |
Rename getTypeQualifiers to getMethodQualifiers.
Use more descriptive name for the method qualifiers getter.
Differential Revision: https://reviews.llvm.org/D56792
llvm-svn: 352349
Diffstat (limited to 'clang/lib/Parse/ParseCXXInlineMethods.cpp')
-rw-r--r-- | clang/lib/Parse/ParseCXXInlineMethods.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseCXXInlineMethods.cpp b/clang/lib/Parse/ParseCXXInlineMethods.cpp index e3e8464139a..5598058932e 100644 --- a/clang/lib/Parse/ParseCXXInlineMethods.cpp +++ b/clang/lib/Parse/ParseCXXInlineMethods.cpp @@ -415,7 +415,7 @@ void Parser::ParseLexedMethodDeclaration(LateParsedMethodDeclaration &LM) { Method = cast<CXXMethodDecl>(LM.Method); Sema::CXXThisScopeRAII ThisScope(Actions, Method->getParent(), - Method->getTypeQualifiers(), + Method->getMethodQualifiers(), getLangOpts().CPlusPlus11); // Parse the exception-specification. |