Skip to content

Commit

Permalink
Small fix in Const.toDT fn
Browse files Browse the repository at this point in the history
  • Loading branch information
OceanOak committed Sep 3, 2024
1 parent 3ede8fc commit 939ecc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/LibExecution/ProgramTypesToDarkTypes.fs
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ module Const =
| PT.Const.CUInt128 i -> "CUInt128", [ DUInt128 i ]
| PT.Const.CFloat(sign, w, f) ->
"CFloat", [ Sign.toDT sign; DString w; DString f ]
| PT.Const.CChar c -> "CChar", [ DChar c ]
| PT.Const.CChar c -> "CChar", [ DString c ]
| PT.Const.CString s -> "CString", [ DString s ]

| PT.Const.CTuple(first, second, theRest) ->
Expand Down

0 comments on commit 939ecc8

Please sign in to comment.