| author | |
| committer | |
| log | 40e37d4324dd4e74c2a3285a73942b6ae50d003e |
| tree | 86ec3499b57617da60cb6723ee80d29a054a428c |
| parent | 1ec0261518a8a0e302ebba28c96c4956ba323ce7 |
Function was returning Int before.1 files changed, 1 insertions(+), 1 deletions(-)
src/type.zig+1-1| ... | ... | @@ -38,7 +38,6 @@ pub const Type = extern union { |
| 38 | 38 | .c_ulong, |
| 39 | 39 | .c_longlong, |
| 40 | 40 | .c_ulonglong, |
| 41 | .c_longdouble, | |
| 42 | 41 | .int_signed, |
| 43 | 42 | .int_unsigned, |
| 44 | 43 | => return .Int, |
| ... | ... | @@ -47,6 +46,7 @@ pub const Type = extern union { |
| 47 | 46 | .f32, |
| 48 | 47 | .f64, |
| 49 | 48 | .f128, |
| 49 | .c_longdouble, | |
| 50 | 50 | => return .Float, |
| 51 | 51 | |
| 52 | 52 | .c_void => return .Opaque, |