more code formatting consistency changes for loops and conditionals
This commit is contained in:
@ -145,7 +145,7 @@ std::vector<std::string> Tokenizer::as_vector() {
|
||||
// generate vector
|
||||
std::vector<std::string> tokens;
|
||||
|
||||
while(has_next()) {
|
||||
while (has_next()) {
|
||||
tokens.emplace_back(next());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user