Expose bytes for uint

This commit is contained in:
Alexander Ivanov 2018-02-20 15:04:35 +02:00
parent 001f78f27c
commit e3eaaec93a
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ const TTMATH_HEADER = ttmathPath & DirSep & "headers" & DirSep & "ttmath.h"
type
UInt256* {.importc: "ttmath::UInt<4>", header: TTMATH_HEADER.} = object
table: array[4, uint64]
table*: array[4, uint64]
stdString {.importc: "std::string", header: "<string.h>".} = object

View File

@ -1,5 +1,5 @@
packageName = "ttmath"
version = "0.4.0"
version = "0.5.0"
author = "Status Research & Development GmbH"
description = "A Nim wrapper for ttmath: big numbers with fixed size"
license = "Apache License 2.0"