summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-01-16 21:00:09 -0800
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-01-16 21:40:39 -0800
commitf07018f7e70d39bcfdd71882c2b8b6c510ba1955 (patch)
treea82ce830bedcf770059d22858ab9b6ab4f1c836d /src
parent550ab4b6356ba203acb6aaebcd3d41acb9e1fa4a (diff)
Convert spaces to tabs
Diffstat (limited to 'src')
-rw-r--r--src/pugixml.cpp4
-rw-r--r--src/pugixml.hpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 9760e9f..265337a 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -8681,7 +8681,7 @@ PUGI__NS_BEGIN
bool step_push(xpath_node_set_raw& ns, xml_attribute_struct* a, xml_node_struct* parent, xpath_allocator* alloc)
{
- assert(a);
+ assert(a);
const char_t* name = a->name ? a->name : PUGIXML_TEXT("");
@@ -8721,7 +8721,7 @@ PUGI__NS_BEGIN
bool step_push(xpath_node_set_raw& ns, xml_node_struct* n, xpath_allocator* alloc)
{
- assert(n);
+ assert(n);
xml_node_type type = PUGI__NODETYPE(n);
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 240b5aa..91e1f2e 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -352,7 +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(float rhs);
bool set_value(bool rhs);
#ifdef PUGIXML_HAS_LONG_LONG
@@ -433,7 +433,7 @@ namespace pugi
const char_t* name() const;
// Get node value, or "" if node is empty or it has no value
- // Note: For <node>text</node> node.value() does not return "text"! Use child_value() or text() methods to access text inside nodes.
+ // Note: For <node>text</node> node.value() does not return "text"! Use child_value() or text() methods to access text inside nodes.
const char_t* value() const;
// Get attribute list
@@ -695,7 +695,7 @@ 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(float rhs);
bool set(double rhs);
bool set(bool rhs);