summaryrefslogtreecommitdiff
path: root/graphics/asymptote/fileio.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/fileio.h')
-rw-r--r--graphics/asymptote/fileio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/asymptote/fileio.h b/graphics/asymptote/fileio.h
index 6fcd379ec3..93f79a44fd 100644
--- a/graphics/asymptote/fileio.h
+++ b/graphics/asymptote/fileio.h
@@ -416,7 +416,7 @@ public:
void Read(bool &val) {string t; readwhite(t); val=(t == "true");}
void Read(Int& val) {*stream >> val;}
- void Read(double& val) {*stream >> val;}
+ void Read(double& val);
void Read(pair& val) {*stream >> val;}
void Read(triple& val) {*stream >> val;}
void Read(char& val) {stream->get(val);}