This revision was automatically updated to reflect the committed changes. Closed by commit rGf887cb10acc9: [NFC][clang] Fix static analyzer concerns (authored by Fznamznon).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D156896/new/ https://reviews.llvm.org/D156896 Files: clang/include/clang/Tooling/Tooling.h Index: clang/include/clang/Tooling/Tooling.h =================================================================== --- clang/include/clang/Tooling/Tooling.h +++ clang/include/clang/Tooling/Tooling.h @@ -267,6 +267,9 @@ ~ToolInvocation(); + ToolInvocation(const ToolInvocation &) = delete; + ToolInvocation &operator=(const ToolInvocation &) = delete; + /// Set a \c DiagnosticConsumer to use during driver command-line parsing and /// the action invocation itself. void setDiagnosticConsumer(DiagnosticConsumer *DiagConsumer) {
Index: clang/include/clang/Tooling/Tooling.h =================================================================== --- clang/include/clang/Tooling/Tooling.h +++ clang/include/clang/Tooling/Tooling.h @@ -267,6 +267,9 @@ ~ToolInvocation(); + ToolInvocation(const ToolInvocation &) = delete; + ToolInvocation &operator=(const ToolInvocation &) = delete; + /// Set a \c DiagnosticConsumer to use during driver command-line parsing and /// the action invocation itself. void setDiagnosticConsumer(DiagnosticConsumer *DiagConsumer) {
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits