aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-09 09:16:12 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-09 09:16:12 -0500
commit970bbb473c81975d3c7366260c8228fd4fcc8c4d (patch)
tree518c5e7290ffe66e84ba1c8e7df0c42f849d0857 /alee.cpp
parentdcd5e792b1d84afd1bea9780781674b6e6ad8dc3 (diff)
linting; reduce msp430 binary size
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/alee.cpp b/alee.cpp
index 1be7337..77c2995 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -39,10 +39,12 @@ int main(int argc, char *argv[])
dict.initialize();
- std::vector args (argv + 1, argv + argc);
- for (const auto& a : args) {
- std::ifstream file (a);
- parseFile(parser, state, file);
+ {
+ std::vector args (argv + 1, argv + argc);
+ for (const auto& a : args) {
+ std::ifstream file (a);
+ parseFile(parser, state, file);
+ }
}
okay = true;