summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-16 00:32:01 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-16 00:32:01 -0700
commitb6995f06b9b60eb8df5838572572bc2e4fd953c2 (patch)
treebaeed4006629b45b67036932b3744cc80e3aec3f /src
parentbd23216420aa9b31fae6891ac267cd0ce1dddbb8 (diff)
Fix BorlandC compilation
Rename partition to partition3 to resolve conflicts with std::partition.
Diffstat (limited to 'src')
-rw-r--r--src/pugixml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp
index 62d0711..4bc971b 100644
--- a/src/pugixml.cpp
+++ b/src/pugixml.cpp
@@ -7262,7 +7262,7 @@ PUGI__NS_BEGIN
return middle;
}
- template <typename T, typename Pred> void partition(T* begin, T* end, T pivot, const Pred& pred, T** out_eqbeg, T** out_eqend)
+ template <typename T, typename Pred> void partition3(T* begin, T* end, T pivot, const Pred& pred, T** out_eqbeg, T** out_eqend)
{
// invariant: array is split into 4 groups: = < ? > (each variable denotes the boundary between the groups)
T* eq = begin;
@@ -7300,7 +7300,7 @@ PUGI__NS_BEGIN
// partition in three chunks (< = >)
I eqbeg, eqend;
- partition(begin, end, *median, pred, &eqbeg, &eqend);
+ partition3(begin, end, *median, pred, &eqbeg, &eqend);
// loop on larger half
if (eqbeg - begin > end - eqend)