From 3c6646eb5e33a86825e8fa91d77530fec91331ed Mon Sep 17 00:00:00 2001 From: q66 Date: Mon, 15 Aug 2016 18:57:31 +0100 Subject: [PATCH] syntax --- cs_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cs_util.cc b/cs_util.cc index 667afa00..0af7c9cb 100644 --- a/cs_util.cc +++ b/cs_util.cc @@ -7,7 +7,7 @@ namespace cscript { static inline void p_skip_white(ostd::ConstCharRange &v) { - while (!v.empty() && isspace(v.front())) { + while (!v.empty() && isspace(*v)) { ++v; } }