From 6695b09e55a231f85c5fdf913974b7bb832e484b Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Tue, 3 Mar 2015 19:52:59 +0000 Subject: Remove no-op dtor so that use of the implicit copy ctor/assignment operator are not deprecated. llvm-svn: 231112 --- llvm/unittests/ADT/HashingTest.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'llvm') diff --git a/llvm/unittests/ADT/HashingTest.cpp b/llvm/unittests/ADT/HashingTest.cpp index 34eb5a52eb8..b28561bd011 100644 --- a/llvm/unittests/ADT/HashingTest.cpp +++ b/llvm/unittests/ADT/HashingTest.cpp @@ -33,7 +33,6 @@ struct LargeTestInteger { uint64_t arr[8]; }; struct NonPOD { uint64_t x, y; NonPOD(uint64_t x, uint64_t y) : x(x), y(y) {} - ~NonPOD() {} friend hash_code hash_value(const NonPOD &obj) { return hash_combine(obj.x, obj.y); } -- cgit v1.2.3