sync with header

This commit is contained in:
Axel Kohlmeyer
2020-05-31 10:05:39 -04:00
parent 89bffb2ee9
commit f5be01e4f1

View File

@ -53,11 +53,11 @@ Tokenizer::const_iterator Tokenizer::cend() const {
return tokens.cend();
}
const std::string & Tokenizer::operator[](size_t index) {
std::string & Tokenizer::operator[](size_t index) {
return tokens[index];
}
const size_t Tokenizer::count() const {
size_t Tokenizer::count() const {
return tokens.size();
}
@ -132,6 +132,6 @@ void ValueTokenizer::skip(int ntokens) {
current = std::next(current, ntokens);
}
const size_t ValueTokenizer::count() const {
size_t ValueTokenizer::count() const {
return tokens.count();
}