From 5fdd843d14c6ac974d3616da715d8e834c0f4b96 Mon Sep 17 00:00:00 2001 From: Manuel Klimek Date: Fri, 23 Oct 2015 10:00:50 +0000 Subject: Make isExpensiveToCopy() tri-state. This allows returning "don't know" for dependent types. llvm-svn: 251103 --- clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp') diff --git a/clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp b/clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp index 2409cae3f40..609dd082d29 100644 --- a/clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp +++ b/clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp @@ -120,11 +120,6 @@ struct NegativeParamTriviallyCopyable { int I_; }; -template struct NegativeDependentType { - NegativeDependentType(T Value) : T_(Value) {} - T T_; -}; - struct NegativeNotPassedByValue { NegativeNotPassedByValue(const Movable &M) : M_(M) {} NegativeNotPassedByValue(const Movable M) : M_(M) {} -- cgit v1.2.3