Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nimble for nim1.0 #3

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion decimal.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
packageName = "Decimal"
version = "0.0.1"
author = "Status Research & Development GmbH"
description = "A correctly-rounded arbitrary precision decimal floating point arithmetic library"
Expand Down
2 changes: 1 addition & 1 deletion decimal/decimal.nim → src/decimal.nim
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0).
# at your option. This file may not be copied, modified, or distributed except according to those terms.

import decimal_lowlevel
import decimal/decimal_lowlevel

type
DecimalType* = ref[ptr mpd_t]
Expand Down
File renamed without changes.