diff options
author | Yusuke Endoh <[email protected]> | 2024-06-21 12:32:10 +0900 |
---|---|---|
committer | git <[email protected]> | 2024-06-21 12:32:04 +0000 |
commit | 9a22d4b9a0bbde05969a74835fb5be9dc95ff35f (patch) | |
tree | c79f001176a226cb81bccea538d57d9724c8a6c8 | |
parent | bf061ce6fea774f9d400d7cc06386c7bccb927d5 (diff) |
[ruby/prism] Update `#line` that was missed to update
Follow up https://github.com/ruby/prism/commit/1a2626be275d
https://github.com/ruby/prism/commit/8174aac929
-rw-r--r-- | prism/templates/src/node.c.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prism/templates/src/node.c.erb b/prism/templates/src/node.c.erb index 2700dba1e6..da30a96ec4 100644 --- a/prism/templates/src/node.c.erb +++ b/prism/templates/src/node.c.erb @@ -1,4 +1,4 @@ -#line <%= __LINE__ + 1 %> "<%= File.basename(__FILE__) %>" +#line <%= __LINE__ + 1 %> "prism/templates/src/<%= File.basename(__FILE__) %>" #include "prism/node.h" /** |