diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-15 17:14:23 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-15 17:14:23 +0800 |
commit | c96700f5fcd0cdcf5e425abaf43208f723157e2f (patch) | |
tree | df72581942034a6331e566cd18340b671c1c8183 /main.ha | |
parent | Remove the "path segments" section in index.htmpl (diff) | |
download | forge-c96700f5fcd0cdcf5e425abaf43208f723157e2f.tar.gz forge-c96700f5fcd0cdcf5e425abaf43208f723157e2f.tar.zst forge-c96700f5fcd0cdcf5e425abaf43208f723157e2f.zip |
Use abort("unreachable") instead of a random comment
Diffstat (limited to 'main.ha')
-rw-r--r-- | main.ha | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ export fn main() void = { for (let opt .. cmd.opts) { switch (opt.0) { case 'c' => yield; // TODO: actually handle the config - case => abort(); // unreachable + case => abort("unreachable"); }; }; |