| 575 | template <typename DERIVED, Type::type TYPE_ID, typename C_TYPE> |
| 576 | class IntegerTypeImpl : public detail::CTypeImpl<DERIVED, IntegerType, TYPE_ID, C_TYPE> { |
| 577 | bool is_signed() const override { return std::is_signed<C_TYPE>::value; } |
| 578 | }; |
| 579 | |
| 580 | } // namespace detail |
no outgoing calls