summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-01-16 21:43:57 -0800
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-01-16 21:43:57 -0800
commit8e95f0d88947631162f5ed1fc5427b414425604b (patch)
tree7f6dffed65d59174f115226dbb829512d8c8bd07 /src
parentd454013cffe1be5819bfb6329b1aa218b8de618f (diff)
docs: Add missing float setters to reference
Also fix the float/double member order in the header file.
Diffstat (limited to 'src')
-rw-r--r--src/pugixml.hpp2
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