diff --git a/include/incredis/incredis_batch.hpp b/include/incredis/incredis_batch.hpp index 59b2c83..dad03b6 100644 --- a/include/incredis/incredis_batch.hpp +++ b/include/incredis/incredis_batch.hpp @@ -21,7 +21,7 @@ #include "batch.hpp" #include "duckhandy/sequence_bt.hpp" #include -#include +#include #include namespace redis { @@ -177,7 +177,7 @@ namespace redis { struct stringize_or_forward_impl { static_assert(std::is_floating_point::value, "Value must be given as floating point number"); typedef std::string type; - static std::string do_it ( T parT ) { return boost::lexical_cast(parT); } + static std::string do_it ( T parT ) { return int_conv(parT); } }; template