Skip to content

Commit

Permalink
fix pragma syntax for modern Nim
Browse files Browse the repository at this point in the history
  • Loading branch information
Vindaar committed Mar 25, 2024
1 parent 033e637 commit fa5cb5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rnim/Rinternals_types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ type
expr*: ptr SEXPREC
env*: ptr SEXPREC

INNER_C_UNION_Rinternals_types_69* {.bycopy.} = object {.union.}
INNER_C_UNION_Rinternals_types_69* {.bycopy, union.} = object
primsxp*: primsxp_struct
symsxp*: symsxp_struct
listsxp*: listsxp_struct
Expand All @@ -72,7 +72,7 @@ type
vecsxp*: vecsxp_struct

VECSEXP* = ptr VECTOR_SEXPREC
SEXPREC_ALIGN* {.bycopy.} = object {.union.}
SEXPREC_ALIGN* {.bycopy, union.} = object
s*: VECTOR_SEXPREC
align*: cdouble

Expand Down

0 comments on commit fa5cb5e

Please sign in to comment.