aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-02-10 14:13:44 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-02-10 14:13:44 -0500
commit15b9b3fe86ac88492bf9befb5a52770e8273630b (patch)
treeda45681d4d54e369c1af0af292f25bca657346f2 /compile.c
parent66eca49d186b4197fe9000b3b4b2afb47c89fcb0 (diff)
Add file info to headers
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index f2c30653..d2554ed2 100644
--- a/compile.c
+++ b/compile.c
@@ -4505,7 +4505,7 @@ CORD compile_file_header(env_t *env, ast_t *ast)
{
CORD header = CORD_all(
"#pragma once\n"
- // "#line 1 ", CORD_quoted(ast->file->filename), "\n",
+ "#line 1 ", CORD_quoted(ast->file->filename), "\n",
"#include <tomo/tomo.h>\n");
compile_typedef_info_t info = {.env=env, .header=&header};