Merge pull request #2151 from akohlmey/move-ubuf-to-lmptype

Move definition(s) of union ubuf to lmptype.h
This commit is contained in:
Axel Kohlmeyer
2020-06-12 05:51:41 -04:00
committed by GitHub
25 changed files with 498 additions and 89 deletions

View File

@ -547,7 +547,7 @@ std::string utils::get_potential_date(const std::string & path, const std::strin
reader.ignore_comments = false;
char * line = nullptr;
while (line = reader.next_line()) {
while ((line = reader.next_line())) {
ValueTokenizer values(line);
while (values.has_next()) {
std::string word = values.next_string();