mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Remove no-op dtor so that use of the implicit copy ctor/assignment operator are not deprecated.
llvm-svn: 231112
This commit is contained in:
parent
cb31f7b7b3
commit
3c0760986b
@ -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