master
Daniel Kolesa 2016-08-15 18:57:31 +01:00
parent 93f20b1fae
commit 3c6646eb5e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}