From f1a4c4c4277cdd692a611d6425f3b92492c43cfd Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Fri, 16 Nov 2012 12:57:15 -0700 Subject: [PATCH] Fix compiler warning found on VS 2008 64bit --- include/chaiscript/language/chaiscript_parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/chaiscript/language/chaiscript_parser.hpp b/include/chaiscript/language/chaiscript_parser.hpp index 83387e11..c829ebbc 100644 --- a/include/chaiscript/language/chaiscript_parser.hpp +++ b/include/chaiscript/language/chaiscript_parser.hpp @@ -569,7 +569,7 @@ namespace chaiscript if (unsignedrequired && !unsigned_) { - if (t_type == std::hex || t_type == std::oct) + if (t_type == &std::hex || t_type == &std::oct) { // with hex and octal we are happy to just make it unsigned unsigned_ = true;