summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-03-03 19:52:59 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-03-03 19:52:59 +0000
commit6695b09e55a231f85c5fdf913974b7bb832e484b (patch)
tree1fea48edbe8c23db9196fd705943a267f058e628
parent720ab84ba2f7c4c748fb9295110ae35be0d7c9cb (diff)
downloadbcm5719-llvm-6695b09e55a231f85c5fdf913974b7bb832e484b.tar.gz
bcm5719-llvm-6695b09e55a231f85c5fdf913974b7bb832e484b.zip
Remove no-op dtor so that use of the implicit copy ctor/assignment operator are not deprecated.
llvm-svn: 231112
-rw-r--r--llvm/unittests/ADT/HashingTest.cpp1
1 files changed, 0 insertions, 1 deletions
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);
}
OpenPOWER on IntegriCloud