diff --git a/include/chaiscript/dispatchkit/bind_first.hpp b/include/chaiscript/dispatchkit/bind_first.hpp index 06a6411..f506439 100644 --- a/include/chaiscript/dispatchkit/bind_first.hpp +++ b/include/chaiscript/dispatchkit/bind_first.hpp @@ -13,7 +13,6 @@ #ifndef CHAISCRIPT_BIND_FIRST_HPP_ #define CHAISCRIPT_BIND_FIRST_HPP_ -#include #define BOOST_PP_ITERATION_LIMITS ( 0, 8 ) #define BOOST_PP_FILENAME_1 diff --git a/include/chaiscript/dispatchkit/bootstrap.hpp b/include/chaiscript/dispatchkit/bootstrap.hpp index 43da17d..de70991 100644 --- a/include/chaiscript/dispatchkit/bootstrap.hpp +++ b/include/chaiscript/dispatchkit/bootstrap.hpp @@ -445,10 +445,10 @@ namespace chaiscript bootstrap_pod_type("unsigned_long", m); bootstrap_pod_type("size_t", m); bootstrap_pod_type("char", m); - bootstrap_pod_type("int8_t", m); - bootstrap_pod_type("int16_t", m); - bootstrap_pod_type("int32_t", m); - bootstrap_pod_type("int64_t", m); + bootstrap_pod_type("int8_t", m); + 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); diff --git a/include/chaiscript/dispatchkit/boxed_cast.hpp b/include/chaiscript/dispatchkit/boxed_cast.hpp index 59ccbfa..98c85e1 100644 --- a/include/chaiscript/dispatchkit/boxed_cast.hpp +++ b/include/chaiscript/dispatchkit/boxed_cast.hpp @@ -14,8 +14,6 @@ #include "../chaiscript_threading.hpp" #include -#include -#include #include #include #include diff --git a/include/chaiscript/dispatchkit/boxed_cast_helper.hpp b/include/chaiscript/dispatchkit/boxed_cast_helper.hpp index 15c237d..899011a 100644 --- a/include/chaiscript/dispatchkit/boxed_cast_helper.hpp +++ b/include/chaiscript/dispatchkit/boxed_cast_helper.hpp @@ -11,7 +11,6 @@ #include "boxed_value.hpp" #include -#include #include namespace chaiscript diff --git a/include/chaiscript/dispatchkit/boxed_number.hpp b/include/chaiscript/dispatchkit/boxed_number.hpp index a5f6b50..e71beef 100644 --- a/include/chaiscript/dispatchkit/boxed_number.hpp +++ b/include/chaiscript/dispatchkit/boxed_number.hpp @@ -9,7 +9,6 @@ #include "boxed_value.hpp" #include "../language/chaiscript_algebraic.hpp" -#include namespace chaiscript { @@ -232,14 +231,14 @@ namespace chaiscript return Go::go(t_oper, t_lhs, t_rhs); } else if (inp_ == typeid(unsigned long)) { return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int8_t)) { - return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int16_t)) { - return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int32_t)) { - return Go::go(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int64_t)) { - return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::int8_t)) { + return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::int16_t)) { + return Go::go(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::int32_t)) { + 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)) { @@ -273,14 +272,14 @@ namespace chaiscript return oper_rhs(t_oper, t_lhs, t_rhs); } else if (inp_ == typeid(unsigned long)) { return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int8_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int16_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int32_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); - } else if (inp_ == typeid(boost::int64_t)) { - return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::int8_t)) { + return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::int16_t)) { + return oper_rhs(t_oper, t_lhs, t_rhs); + } else if (inp_ == typeid(std::int32_t)) { + 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)) { diff --git a/include/chaiscript/dispatchkit/boxed_value.hpp b/include/chaiscript/dispatchkit/boxed_value.hpp index 8026fe6..a850340 100644 --- a/include/chaiscript/dispatchkit/boxed_value.hpp +++ b/include/chaiscript/dispatchkit/boxed_value.hpp @@ -13,8 +13,6 @@ #include #include -#include -#include #include #include diff --git a/include/chaiscript/dispatchkit/type_info.hpp b/include/chaiscript/dispatchkit/type_info.hpp index 2a79765..363549a 100644 --- a/include/chaiscript/dispatchkit/type_info.hpp +++ b/include/chaiscript/dispatchkit/type_info.hpp @@ -19,7 +19,6 @@ #include #include #include -#include namespace chaiscript {