From 323fdcf44bc54a3059ff10e6067275f1dfe31214 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 14 Jan 2016 22:16:42 -0500 Subject: [PATCH] Pig: Migrated to unicodeHexDigit --- src/Pig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pig.cpp b/src/Pig.cpp index d010565d..2b67069d 100644 --- a/src/Pig.cpp +++ b/src/Pig.cpp @@ -234,7 +234,7 @@ bool Pig::getHexDigit (int& result) { int c = _text[_cursor]; if (c && - Lexer::isHexDigit (c)) + unicodeHexDigit (c)) { if (c >= '0' && c <= '9') {