diff options
Diffstat (limited to 'tests/headers/class_with_dtor.hpp')
-rw-r--r-- | tests/headers/class_with_dtor.hpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/headers/class_with_dtor.hpp b/tests/headers/class_with_dtor.hpp deleted file mode 100644 index b9bf74e1..00000000 --- a/tests/headers/class_with_dtor.hpp +++ /dev/null @@ -1,13 +0,0 @@ - - -template <typename T> -class HandleWithDtor { - T* ptr; - ~HandleWithDtor() {} -}; - -typedef HandleWithDtor<int> HandleValue; - -class WithoutDtor { - HandleValue shouldBeWithDtor; -}; |