From 0b10316d9e854d3be6ff22840141a021e00f9419 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Thu, 14 Jul 2016 11:02:06 +0100 Subject: [PATCH] Use lexical_cast from dinhelp, not boost. --- src/incredis/reply.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/incredis/reply.cpp b/src/incredis/reply.cpp index d7aa376..9351f86 100644 --- a/src/incredis/reply.cpp +++ b/src/incredis/reply.cpp @@ -16,8 +16,8 @@ */ #include "reply.hpp" +#include "helpers/lexical_cast.hpp" #include -#include namespace redis { const long long& get_integer (const Reply& parReply) { @@ -35,7 +35,7 @@ namespace redis { } long long get_integer_autoconv_if_str (const Reply &parReply) { - using boost::lexical_cast; + using dinhelp::lexical_cast; const auto type = parReply.which(); switch (type) {