Skip to content

Commit

Permalink
adds default type for seq[float]
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunc committed Apr 24, 2016
1 parent 85c719e commit d84ee1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cucumber.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.0.3"
version = "0.0.5"
author = "Shaun Cutts"
description = "Implements Cucumber BDD system in nim."
license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions cucumber/parameter.nim
Original file line number Diff line number Diff line change
Expand Up @@ -258,5 +258,6 @@ proc newSeqB[T]() : seq[T] = newSeq[T]()
DeclareParamType("seq[int]", seq[int], nil, newSeqB[int], nil)
DeclareParamType("seq[string]", seq[string], nil, newSeqB[string], nil)
DeclareParamType("seq[bool]", seq[bool], nil, newSeqB[bool], nil)
DeclareParamType("seq[float]", seq[float], nil, newSeqB[float], nil)


0 comments on commit d84ee1e

Please sign in to comment.