diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 14:12:26 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 14:12:26 -0500 |
commit | 92680120c6e3902644171c37eb7b271cf2d82250 (patch) | |
tree | 0efa3beb7fe505b3005770420cbaa9fa5d1f1f78 /alee.cpp | |
parent | 59ecb61463119e77637214e3c298c422c4537ea0 (diff) |
fix indentation
Diffstat (limited to 'alee.cpp')
-rw-r--r-- | alee.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ int main(int argc, char *argv[]) std::vector args (argv + 1, argv + argc); for (const auto& a : args) { std::ifstream file (a); - parseFile(parser, state, file); + parseFile(parser, state, file); } //std::cout << state.size() << ' ' << state.compiling << "> "; @@ -49,7 +49,7 @@ int user_sys(State& state) switch (state.pop()) { case 0: std::cout << state.pop() << std::endl; - break; + break; } return 0; |