From 1f7362e0fc0d129990fc791e5ab847bd4e2f0ecd Mon Sep 17 00:00:00 2001 From: Erich Keane 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. llvm-svn: 316132 --- clang/include/clang/AST/ASTContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/ASTContext.h b/clang/include/clang/AST/ASTContext.h index df7b43a1..09035be 100644 --- a/clang/include/clang/AST/ASTContext.h +++ b/clang/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.7.4