Commit 9682dd8f authored by neverlord's avatar neverlord

removed static assertion

parent 12ad70ed
...@@ -51,8 +51,8 @@ template<typename T, size_t MaxSize> ...@@ -51,8 +51,8 @@ template<typename T, size_t MaxSize>
class fixed_vector class fixed_vector
{ {
static_assert(std::is_arithmetic<T>::value || std::is_pointer<T>::value, //static_assert(std::is_arithmetic<T>::value || std::is_pointer<T>::value,
"T must be an arithmetic or pointer type"); // "T must be an arithmetic or pointer type");
size_t m_size; size_t m_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment