diff options
| author | Etienne Bergeron <etienneb@google.com> | 2016-08-03 06:59:46 +0000 |
|---|---|---|
| committer | Etienne Bergeron <etienneb@google.com> | 2016-08-03 06:59:46 +0000 |
| commit | 58728c6e9a7487a49b70c9251554e11b57bc0e9c (patch) | |
| tree | 3de530390f52806c841c5919dd8ba0d25a17f5c0 /clang-tools-extra/clang-tidy/mpi | |
| parent | cf162a303167d2674573afe68123dcc1a81f1aeb (diff) | |
| download | bcm5719-llvm-58728c6e9a7487a49b70c9251554e11b57bc0e9c.tar.gz bcm5719-llvm-58728c6e9a7487a49b70c9251554e11b57bc0e9c.zip | |
[extra-tools] Fix extra tools build bot warnings due to incorrect doc
/home/llvmbb/llvm-build-dir/clang-x86_64-debian-fast/llvm.src/tools/clang/tools/extra/clang-tidy/mpi/TypeMismatchCheck.cpp:172:12: warning: parameter 'Complex' not found in the function declaration [-Wdocumentation]
/home/llvmbb/llvm-build-dir/clang-x86_64-debian-fast/llvm.src/tools/clang/tools/extra/clang-tidy/mpi/TypeMismatchCheck.cpp:206:12: warning: parameter 'Complex' not fo
llvm-svn: 277578
Diffstat (limited to 'clang-tools-extra/clang-tidy/mpi')
| -rw-r--r-- | clang-tools-extra/clang-tidy/mpi/TypeMismatchCheck.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-tidy/mpi/TypeMismatchCheck.cpp b/clang-tools-extra/clang-tidy/mpi/TypeMismatchCheck.cpp index 30be95c5123..143cc55f720 100644 --- a/clang-tools-extra/clang-tidy/mpi/TypeMismatchCheck.cpp +++ b/clang-tools-extra/clang-tidy/mpi/TypeMismatchCheck.cpp @@ -169,7 +169,7 @@ static bool isCComplexTypeMatching(const ComplexType *const Complex, /// Check if a complex<float/double/long double> templated buffer type matches /// the MPI datatype. /// -/// \param Complex buffer type +/// \param Template buffer type /// \param BufferTypeName buffer type name, gets assigned /// \param MPIDatatype name of the MPI datatype /// \param LO language options @@ -203,7 +203,7 @@ isCXXComplexTypeMatching(const TemplateSpecializationType *const Template, /// Check if a fixed size width buffer type matches the MPI datatype. /// -/// \param Complex buffer type +/// \param Typedef buffer type /// \param BufferTypeName buffer type name, gets assigned /// \param MPIDatatype name of the MPI datatype /// |

