Workaround bug in gcc 6/7 for building unit tests
This commit is contained in:
parent
d963424630
commit
82587ca185
@ -13,7 +13,7 @@ template<size_t SIZE>
|
|||||||
class FixedSizeData final {
|
class FixedSizeData final {
|
||||||
public:
|
public:
|
||||||
//Non-virtual destructor because we want objects to be small
|
//Non-virtual destructor because we want objects to be small
|
||||||
~FixedSizeData() {}
|
~FixedSizeData() = default;
|
||||||
|
|
||||||
static constexpr size_t BINARY_LENGTH = SIZE;
|
static constexpr size_t BINARY_LENGTH = SIZE;
|
||||||
static constexpr size_t STRING_LENGTH = 2 * BINARY_LENGTH; // Hex encoding
|
static constexpr size_t STRING_LENGTH = 2 * BINARY_LENGTH; // Hex encoding
|
||||||
|
Loading…
Reference in New Issue
Block a user