aboutsummaryrefslogtreecommitdiff
path: root/src/float.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/float.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/float.h b/src/float.h
index 27233ae..f7a3ed3 100644
--- a/src/float.h
+++ b/src/float.h
@@ -3,6 +3,8 @@
3 3
4#include "gats/object.h" 4#include "gats/object.h"
5 5
6#include <bu/fstring.h>
7
6namespace Gats 8namespace Gats
7{ 9{
8 class Float : public Gats::Object 10 class Float : public Gats::Object
@@ -20,6 +22,7 @@ namespace Gats
20 22
21 private: 23 private:
22 double fVal; 24 double fVal;
25 mutable Bu::FString sWriteCache;
23 }; 26 };
24} 27}
25 28