Remove static_assert for sizeof(uint32_t) <= sizeof(void*) (#220)

According to #192, we don't cast integers to pointers anymore. The size static_assert is unnecessary.
This commit is contained in:
Tyler Veness
2016-09-05 23:31:58 -07:00
committed by Peter Johnson
parent 05626cfafe
commit ff93050b31

View File

@@ -16,9 +16,6 @@
#include "HAL/cpp/priority_mutex.h"
#include "spilib/spi-lib.h"
static_assert(sizeof(uint32_t) <= sizeof(void*),
"This file shoves uint32_ts into pointers.");
using namespace hal;
static int32_t m_spiCS0Handle = 0;