summaryrefslogtreecommitdiff
path: root/2005/i/robert/src/utils/hexa.cc
diff options
context:
space:
mode:
authorschodet2005-03-13 20:25:01 +0000
committerschodet2005-03-13 20:25:01 +0000
commita5ccb9a2944290075e032a8a18102a046841e808 (patch)
tree0948cd6d8eee3584009273005339c81ed9b68423 /2005/i/robert/src/utils/hexa.cc
parent352f833b227561c8327b8a7d5d81e7ef628e6308 (diff)
Correction warning.
Diffstat (limited to '2005/i/robert/src/utils/hexa.cc')
-rw-r--r--2005/i/robert/src/utils/hexa.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/2005/i/robert/src/utils/hexa.cc b/2005/i/robert/src/utils/hexa.cc
index d152f8f..102458e 100644
--- a/2005/i/robert/src/utils/hexa.cc
+++ b/2005/i/robert/src/utils/hexa.cc
@@ -53,7 +53,7 @@ static const int hex2digitTbl_[] =
int
hex2digit (char c)
{
- return hex2digitTbl_[c];
+ return hex2digitTbl_[static_cast<int> (c)];
}
/// Converti un chiffre (0-15) en hexa (0-9a-f).