From fbe90b86c831251e07f3a92fa9b8f8ff61998513 Mon Sep 17 00:00:00 2001 From: Vassil Vassilev Date: Mon, 20 Nov 2023 20:25:24 +0000 Subject: [PATCH] [clang-tidy] Remove redundant string initialization --- tools/ClangPlugin.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/ClangPlugin.h b/tools/ClangPlugin.h index 688b1b869..3394a0d38 100644 --- a/tools/ClangPlugin.h +++ b/tools/ClangPlugin.h @@ -68,8 +68,7 @@ namespace clad { : DumpSourceFn(false), DumpSourceFnAST(false), DumpDerivedFn(false), DumpDerivedAST(false), GenerateSourceFile(false), ValidateClangVersion(true), EnableTBRAnalysis(false), - CustomEstimationModel(false), PrintNumDiffErrorInfo(false), - CustomModelName("") {} + CustomEstimationModel(false), PrintNumDiffErrorInfo(false) {} bool DumpSourceFn : 1; bool DumpSourceFnAST : 1;