📝 adjust size of pic in README

This commit is contained in:
ValKmjolnir 2024-04-11 23:45:48 +08:00
parent cc6ad76eaa
commit 1c011f0aad
3 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# __Nasal - Modern Interpreter__
<img src="./doc/pic/header.png" style="width:800px"></img>
<img src="./doc/pic/header.png" style="width:600px"></img>
![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)

View File

@ -1,6 +1,6 @@
# __Nasal - Modern Interpreter__
<img src="../doc/pic/header.png" style="width:800px"></img>
<img src="../doc/pic/header.png" style="width:600px"></img>
![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)

View File

@ -117,10 +117,9 @@ void err() {
std::exit(1);
}
void execute(
const std::string& file,
const std::vector<std::string>& argv,
const u32 cmd) {
void execute(const std::string& file,
const std::vector<std::string>& argv,
const u32 cmd) {
using clk = std::chrono::high_resolution_clock;
const auto den = clk::duration::period::den;