about summary refs log tree commit diff
path: root/src/libexpr/value.hh
diff options
context:
space:
mode:
authorChristian Theune <ct@flyingcircus.io>2016-01-06T07·25+0100
committerChristian Theune <ct@flyingcircus.io>2016-01-06T07·25+0100
commit934642155c036ce6880e57854f095f2863ab80f1 (patch)
tree083e4b07b6e0841bd3e989731df3677fc9f60296 /src/libexpr/value.hh
parenta12a43046b0d1b967f0ca31d0db7bff218250274 (diff)
@eelco's feedback: downgrade to regular float for size, remove unused function.
Diffstat (limited to 'src/libexpr/value.hh')
-rw-r--r--src/libexpr/value.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh
index 88424106cd..62bdd9281f 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