From 175dad2d0443d75e9508b58b4a1d8622bc2bc17f Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Fri, 5 Jun 2015 14:57:49 +0200 Subject: [PATCH] std::isdigit() -> isdigit() Argument depended lookup --- example/execution_context/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/execution_context/parser.cpp b/example/execution_context/parser.cpp index 7edfd9c..7817a2a 100644 --- a/example/execution_context/parser.cpp +++ b/example/execution_context/parser.cpp @@ -65,7 +65,7 @@ private: } void S(){ - if (std::isdigit(next)){ + if (isdigit(next)){ cb(next); scan(); }