mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Remove no-op dtor so that use of the implicit copy ctor/assignment operator are not deprecated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231112 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7b1d76b9e5
commit
b858734918
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user