Skip to content

Commit

Permalink
fix C struct definition of LineInfoNode
Browse files Browse the repository at this point in the history
Fix regression introduced by #44548. Fix #45310.
  • Loading branch information
vtjnash committed Aug 9, 2022
1 parent dd15831 commit 93abf1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/julia.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ typedef struct _jl_line_info_node_t {
struct _jl_module_t *module;
jl_value_t *method;
jl_sym_t *file;
intptr_t line;
intptr_t inlined_at;
int32_t line;
int32_t inlined_at;
} jl_line_info_node_t;

// the following mirrors `struct EffectsOverride` in `base/compiler/effects.jl`
Expand Down

0 comments on commit 93abf1d

Please sign in to comment.