summaryrefslogtreecommitdiff
path: root/cpp/src/IceXML/StreamI.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2002-01-23 16:58:32 +0000
committerMatthew Newhook <matthew@zeroc.com>2002-01-23 16:58:32 +0000
commit0249e96af40c6112a9e94b38efb878f69b8b5260 (patch)
tree08c414b6681ffce3c11e967c325111b275743be1 /cpp/src/IceXML/StreamI.cpp
parentRemoved bogus files. (diff)
downloadice-0249e96af40c6112a9e94b38efb878f69b8b5260.tar.bz2
ice-0249e96af40c6112a9e94b38efb878f69b8b5260.tar.xz
ice-0249e96af40c6112a9e94b38efb878f69b8b5260.zip
WIN32 updates.
Diffstat (limited to 'cpp/src/IceXML/StreamI.cpp')
-rw-r--r--cpp/src/IceXML/StreamI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceXML/StreamI.cpp b/cpp/src/IceXML/StreamI.cpp
index 82f30514ca7..5123b9749e2 100644
--- a/cpp/src/IceXML/StreamI.cpp
+++ b/cpp/src/IceXML/StreamI.cpp
@@ -837,7 +837,7 @@ IceXML::StreamI::readFloat(const string& name, ::Ice::Float& value)
}
string s = toString(child.getNodeValue());
- value = atof(s.c_str());
+ value = (::Ice::Float)atof(s.c_str());
endRead();
}