fix warning

This commit is contained in:
Glenn Maynard
2004-02-10 09:48:43 +00:00
parent 4f439be739
commit b81159c5e2
+1 -1
View File
@@ -125,7 +125,7 @@ typedef struct _tagXMLNode
CString value;
void GetValue(CString &out) { out = value; }
void GetValue(int &out) { out = atoi(value); }
void GetValue(float &out) { out = atof(value); }
void GetValue(float &out) { out = (float) atof(value); }
// internal variables
LPXNode parent; // parent node