commit 2c68264ccb66c1afe603f4b20102b7689b08485d
parent f9844b9cfabc08ea12fbc8ef4cc6a1895c3e3bad
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date: Mon, 26 Sep 2016 09:45:54 +0300
Fix incorrect vec<> size in MSVC2015 Update 2
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/base/vec.hpp b/include/kfr/base/vec.hpp
@@ -563,7 +563,7 @@ struct empty
}
template <typename T, size_t N>
-struct vec : vec_t<T, N>, operators::empty
+struct CMT_EMPTY_BASES vec : vec_t<T, N>, operators::empty
{
static_assert(N > 0 && N <= 256, "Invalid vector size");