ClangTidy fix - 'clang::Sema::checkAllowedCUDAInitializer' has a definition with different parameter names.

llvm-svn: 334155
This commit is contained in:
Han Shen 2018-06-07 00:55:54 +00:00
parent 30913ac39d
commit 7452f73c43
1 changed files with 1 additions and 1 deletions

View File

@ -10174,7 +10174,7 @@ public:
// __shared__ variables whether they are local or not (they all are implicitly
// static in CUDA). One exception is that CUDA allows constant initializers
// for __constant__ and __device__ variables.
void checkAllowedCUDAInitializer(VarDecl *Var);
void checkAllowedCUDAInitializer(VarDecl *VD);
/// Check whether NewFD is a valid overload for CUDA. Emits
/// diagnostics and invalidates NewFD if not.