From: Clifford Wolf Date: Fri, 10 Oct 2014 16:38:40 +0000 (+0200) Subject: Fixed next_token() X-Git-Tag: yosys-0.4~77 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=20d85f20dbb16a1c47f7993da06f5b9abac1d09d;p=yosys.git Fixed next_token() --- diff --git a/kernel/yosys.cc b/kernel/yosys.cc index 96fe5446d..08f75df7b 100644 --- a/kernel/yosys.cc +++ b/kernel/yosys.cc @@ -87,12 +87,12 @@ std::string next_token(std::string &text, const char *sep) { size_t pos_begin = text.find_first_not_of(sep); - if (pos_begin == string::npos) + if (pos_begin == std::string::npos) pos_begin = text.size(); size_t pos_end = text.find_first_of(sep, pos_begin); - if (pos_end == string::npos) + if (pos_end == std::string::npos) pos_end = text.size(); std::string token = text.substr(pos_begin, pos_end-pos_begin);