From c4bedb32c0547e8f6b67ece566050073726120f5 Mon Sep 17 00:00:00 2001 From: lloyd Date: Mon, 18 Apr 2011 18:35:38 +0000 Subject: Maintainer mode warning cleanups, mostly for C style casts which I added to the flags here. --- src/codec/hex/hex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codec/hex') diff --git a/src/codec/hex/hex.cpp b/src/codec/hex/hex.cpp index 596e0e235..49d6e7190 100644 --- a/src/codec/hex/hex.cpp +++ b/src/codec/hex/hex.cpp @@ -101,7 +101,7 @@ size_t hex_decode(byte output[], for(size_t i = 0; i != input_length; ++i) { - const byte bin = HEX_TO_BIN[(byte)input[i]]; + const byte bin = HEX_TO_BIN[static_cast(input[i])]; if(bin >= 0x10) { -- cgit v1.2.3