format all

This commit is contained in:
ouwou
2022-01-09 23:20:08 -05:00
parent f31d431517
commit 481685b3bb
13 changed files with 37 additions and 37 deletions

View File

@@ -1,6 +1,6 @@
#include "token.hpp"
std::string trim(const std::string& str) {
std::string trim(const std::string &str) {
const auto first = str.find_first_not_of(' ');
if (first == std::string::npos) return str;
const auto last = str.find_last_not_of(' ');