diff options
author | Steve Doiel <steved@usnr.com> | 2015-01-16 14:55:10 -0800 |
---|---|---|
committer | Steve Doiel <steved@usnr.com> | 2015-01-16 14:55:10 -0800 |
commit | 4ae1940065c415223445efb23d3200d1b0b1d4a1 (patch) | |
tree | 465b1895be707a5d05325e1ee50820ada509f326 /src/pugixml.hpp | |
parent | 32f0a8bd3a5c9f3c454164f4d23289851b0de3e7 (diff) |
Fix attribute round trip for float as well
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 8a332e1..2076426 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -352,6 +352,7 @@ namespace pugi bool set_value(int rhs); bool set_value(unsigned int rhs); bool set_value(double rhs); + bool set_value(float rhs); bool set_value(bool rhs); #ifdef PUGIXML_HAS_LONG_LONG |