r316132 - Fix capitalization of parameter

Erich Keane via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 18 15:17:16 PDT 2017


Author: erichkeane
Date: Wed Oct 18 15:17:16 2017
New Revision: 316132

URL: http://llvm.org/viewvc/llvm-project?rev=316132&view=rev
Log:
Fix capitalization of parameter

The .cpp file has this properly capitalized, but 
the header does not.  Simply fixed it.

Modified:
    cfe/trunk/include/clang/AST/ASTContext.h

Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=316132&r1=316131&r2=316132&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Wed Oct 18 15:17:16 2017
@@ -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




More information about the cfe-commits mailing list