diff --git a/README.md b/README.md index 87ef968..82ac078 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # __Nasal - Modern Interpreter__ - + ![GitHub code size](https://img.shields.io/github/languages/code-size/ValKmjolnir/Nasal-Interpreter?style=flat-square&logo=github) ![GitHub release(latest by date)](https://img.shields.io/github/v/release/ValKmjolnir/Nasal-Interpreter?style=flat-square&logo=github) diff --git a/doc/README_zh.md b/doc/README_zh.md index 8803905..ddb213f 100644 --- a/doc/README_zh.md +++ b/doc/README_zh.md @@ -1,6 +1,6 @@ # __Nasal - Modern Interpreter__ - + ![GitHub code size](https://img.shields.io/github/languages/code-size/ValKmjolnir/Nasal-Interpreter?style=flat-square&logo=github) ![GitHub release(latest by date)](https://img.shields.io/github/v/release/ValKmjolnir/Nasal-Interpreter?style=flat-square&logo=github) diff --git a/src/main.cpp b/src/main.cpp index 216e5a6..0955be9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -117,10 +117,9 @@ void err() { std::exit(1); } -void execute( - const std::string& file, - const std::vector& argv, - const u32 cmd) { +void execute(const std::string& file, + const std::vector& argv, + const u32 cmd) { using clk = std::chrono::high_resolution_clock; const auto den = clk::duration::period::den;