This commit is contained in:
q66 2016-08-15 18:57:31 +01:00
parent 93f20b1fae
commit 3c6646eb5e

View file

@ -7,7 +7,7 @@
namespace cscript { namespace cscript {
static inline void p_skip_white(ostd::ConstCharRange &v) { static inline void p_skip_white(ostd::ConstCharRange &v) {
while (!v.empty() && isspace(v.front())) { while (!v.empty() && isspace(*v)) {
++v; ++v;
} }
} }