diff options
Diffstat (limited to 'tests/headers/templatized-bitfield.hpp')
-rw-r--r-- | tests/headers/templatized-bitfield.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/headers/templatized-bitfield.hpp b/tests/headers/templatized-bitfield.hpp deleted file mode 100644 index ed4a1540..00000000 --- a/tests/headers/templatized-bitfield.hpp +++ /dev/null @@ -1,7 +0,0 @@ -/// We don't get a layout for this bitfield, since we don't know what `T` will -/// be, so we cannot allocate bitfield units. The best thing we can do is make -/// the struct opaque. -template <class T> -class TemplatizedBitfield { - T t : 6; -}; |