From 970bbb473c81975d3c7366260c8228fd4fcc8c4d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Mar 2023 09:16:12 -0500 Subject: linting; reduce msp430 binary size --- alee.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'alee.cpp') 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; -- cgit v1.2.3