diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-01-16 21:43:57 -0800 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-01-16 21:43:57 -0800 |
commit | 8e95f0d88947631162f5ed1fc5427b414425604b (patch) | |
tree | 7f6dffed65d59174f115226dbb829512d8c8bd07 /src/pugixml.hpp | |
parent | d454013cffe1be5819bfb6329b1aa218b8de618f (diff) |
docs: Add missing float setters to reference
Also fix the float/double member order in the header file.
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 91e1f2e..9798b46 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -695,8 +695,8 @@ namespace pugi // Set text with type conversion (numbers are converted to strings, boolean is converted to "true"/"false") bool set(int rhs); bool set(unsigned int rhs); - bool set(float rhs); bool set(double rhs); + bool set(float rhs); bool set(bool rhs); #ifdef PUGIXML_HAS_LONG_LONG |