diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp b/clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp index 6520620..9639e0e 100644 --- a/clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp +++ b/clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp @@ -147,7 +147,7 @@ struct BF { BF(const BF &Other) : Field1(Other.Field1), Field2(Other.Field2), Field3(Other.Field3), Field4(Other.Field4) {}; // CHECK-MESSAGES: :[[@LINE-2]]:3: warning: use '= default' - // CHECK-FIXES: BF(const BF &Other) {{$}} + // CHECK-FIXES: BF(const BF &Other) // CHECK-FIXES: = default; BF &operator=(const BF &); |