diff options
author | Christian Theune <ct@flyingcircus.io> | 2016-01-06T07·25+0100 |
---|---|---|
committer | Christian Theune <ct@flyingcircus.io> | 2016-01-06T07·25+0100 |
commit | 934642155c036ce6880e57854f095f2863ab80f1 (patch) | |
tree | 083e4b07b6e0841bd3e989731df3677fc9f60296 /src/libexpr | |
parent | a12a43046b0d1b967f0ca31d0db7bff218250274 (diff) |
@eelco's feedback: downgrade to regular float for size, remove unused function.
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/value.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh index 88424106cdeb..62bdd9281f08 100644 --- a/src/libexpr/value.hh +++ b/src/libexpr/value.hh @@ -39,7 +39,7 @@ class XMLWriter; typedef long NixInt; -typedef double NixFloat; +typedef float NixFloat; /* External values must descend from ExternalValueBase, so that * type-agnostic nix functions (e.g. showType) can be implemented |