From b8c95b412ca209809077dff61e7279860106d1a3 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 18 Mar 2013 20:33:53 +0000 Subject: [PATCH] Detab [SVN r83492] --- include/boost/algorithm/hex.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/algorithm/hex.hpp b/include/boost/algorithm/hex.hpp index dc8cd1c..2adb0be 100644 --- a/include/boost/algorithm/hex.hpp +++ b/include/boost/algorithm/hex.hpp @@ -65,8 +65,8 @@ namespace detail { template unsigned char hex_char_to_int ( T val ) { - char c = static_cast ( val ); - unsigned retval = 0; + char c = static_cast ( val ); + unsigned retval = 0; if ( c >= '0' && c <= '9' ) retval = c - '0'; else if ( c >= 'A' && c <= 'F' ) retval = c - 'A' + 10; else if ( c >= 'a' && c <= 'f' ) retval = c - 'a' + 10;