From b5f76b264eddfb946c41aa9b2b166d2fda585c3b Mon Sep 17 00:00:00 2001 From: Erich Keane <erich.keane@intel.com> Date: Wed, 18 Oct 2017 22:17:16 +0000 Subject: [PATCH] Fix capitalization of parameter The .cpp file has this properly capitalized, but the header does not. Simply fixed it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316132 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/ASTContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index df7b43a13b..09035be021 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -2229,7 +2229,7 @@ public: getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const; /// \brief Retrieves the default calling convention for the current target. - CallingConv getDefaultCallingConvention(bool isVariadic, + CallingConv getDefaultCallingConvention(bool IsVariadic, bool IsCXXMethod) const; /// \brief Retrieves the "canonical" template name that refers to a -- 2.40.0