diff --git a/include/chaiscript/dispatchkit/bootstrap.hpp b/include/chaiscript/dispatchkit/bootstrap.hpp index de70991..1173d22 100644 --- a/include/chaiscript/dispatchkit/bootstrap.hpp +++ b/include/chaiscript/dispatchkit/bootstrap.hpp @@ -449,10 +449,10 @@ namespace chaiscript bootstrap_pod_type("int16_t", m); bootstrap_pod_type("int32_t", m); bootstrap_pod_type("int64_t", m); - bootstrap_pod_type("uint8_t", m); - bootstrap_pod_type("uint16_t", m); - bootstrap_pod_type("uint32_t", m); - bootstrap_pod_type("uint64_t", m); + bootstrap_pod_type("uint8_t", m); + bootstrap_pod_type("uint16_t", m); + bootstrap_pod_type("uint32_t", m); + bootstrap_pod_type("uint64_t", m); operators::logical_compliment(m); diff --git a/include/chaiscript/dispatchkit/boxed_number.hpp b/include/chaiscript/dispatchkit/boxed_number.hpp index e71beef..f593e62 100644 --- a/include/chaiscript/dispatchkit/boxed_number.hpp +++ b/include/chaiscript/dispatchkit/boxed_number.hpp @@ -239,14 +239,14 @@ namespace chaiscript return Go::go(t_oper, t_lhs, t_rhs); } else if (inp_ == typeid(std::int64_t)) { return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint8_t)) { - return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint16_t)) { - return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint32_t)) { - return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint64_t)) { - return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint8_t)) { + return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint16_t)) { + return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint32_t)) { + return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint64_t)) { + return Go::go(t_oper, t_lhs, t_rhs); } else { throw boost::bad_any_cast(); } @@ -280,14 +280,14 @@ namespace chaiscript return oper_rhs(t_oper, t_lhs, t_rhs); } else if (inp_ == typeid(std::int64_t)) { return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint8_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint16_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint32_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::uint64_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint8_t)) { + return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint16_t)) { + return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint32_t)) { + return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::uint64_t)) { + return oper_rhs(t_oper, t_lhs, t_rhs); } else { throw boost::bad_any_cast(); }