diff --git a/binding-sandbox/binding-base.h b/binding-sandbox/binding-base.h index b01fc1a3..793bf7f5 100644 --- a/binding-sandbox/binding-base.h +++ b/binding-sandbox/binding-base.h @@ -102,9 +102,6 @@ namespace mkxp_sandbox { // slot_type<2, slots>::type var2; // this variable should be of type `uint16_t` // slot_type<3, slots>::type var3; // this variable should be of type `uint8_t` template struct slot_type; - template struct slot_type> { - static_assert(false, "index out of range"); - }; template struct slot_type<0, struct decl_slots> { static_assert(std::is_integral::value || std::is_floating_point::value, "slots must have numeric types"); typedef Head type;