diff options
| author | Mel <mel@rnrd.eu> | 2026-05-03 01:30:28 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2026-05-03 01:30:28 +0200 |
| commit | 1512abed55dd3f779eb774eb03f605397a4a45fe (patch) | |
| tree | 42ea2ae10c5667bcbd46e30432ed574b620e681a /boot | |
| parent | fb13c2be5538b10ae456bcb30bfef6622ab6911f (diff) | |
| download | catskill-1512abed55dd3f779eb774eb03f605397a4a45fe.tar.zst catskill-1512abed55dd3f779eb774eb03f605397a4a45fe.zip | |
Move tree visit definitions in visit.c to visit/tree.c for future consistency
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot')
| -rw-r--r-- | boot/catboot.h | 2 | ||||
| -rw-r--r-- | boot/visit/tree.c (renamed from boot/visit.c) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/boot/catboot.h b/boot/catboot.h index f7d3e2d..00764f0 100644 --- a/boot/catboot.h +++ b/boot/catboot.h @@ -17,6 +17,6 @@ #include "lex.c" #include "tree.c" #include "parse.c" -#include "visit.c" +#include "visit/tree.c" #include "transpile.c" #include "build.c" diff --git a/boot/visit.c b/boot/visit/tree.c index 83de09a..001cd36 100644 --- a/boot/visit.c +++ b/boot/visit/tree.c @@ -11,7 +11,7 @@ #pragma once -#include "catboot.h" +#include "../catboot.h" struct Tree_Visit { |
