Skip to content

Commit

Permalink
Fix C struct definition of LineInfoNode (regression from #44548), fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash authored Aug 10, 2022
1 parent f1b968d commit 4025b99
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 4025b99

Please sign in to comment.