This revision was automatically updated to reflect the committed changes. Closed by commit rC358666: [clang-tidy] Address post-commit comments (authored by hokein, committed by ).
Changed prior to commit: https://reviews.llvm.org/D60857?vs=195733&id=195734#toc Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D60857/new/ https://reviews.llvm.org/D60857 Files: include/clang/Tooling/Core/Diagnostic.h Index: include/clang/Tooling/Core/Diagnostic.h =================================================================== --- include/clang/Tooling/Core/Diagnostic.h +++ include/clang/Tooling/Core/Diagnostic.h @@ -93,8 +93,8 @@ std::vector<Diagnostic> Diagnostics; }; -// Get the first fix to apply for this diagnostic. -// Return nullptr if no fixes attached to the diagnostic. +/// Get the first fix to apply for this diagnostic. +/// \returns nullptr if no fixes are attached to the diagnostic. const llvm::StringMap<Replacements> *selectFirstFix(const Diagnostic& D); } // end namespace tooling
Index: include/clang/Tooling/Core/Diagnostic.h =================================================================== --- include/clang/Tooling/Core/Diagnostic.h +++ include/clang/Tooling/Core/Diagnostic.h @@ -93,8 +93,8 @@ std::vector<Diagnostic> Diagnostics; }; -// Get the first fix to apply for this diagnostic. -// Return nullptr if no fixes attached to the diagnostic. +/// Get the first fix to apply for this diagnostic. +/// \returns nullptr if no fixes are attached to the diagnostic. const llvm::StringMap<Replacements> *selectFirstFix(const Diagnostic& D); } // end namespace tooling
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits