Index: Source/core/dom/Node.cpp |
diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp |
index 3bd68346d6a383d464506b6e09e039f24432be6a..5e8678b6ec3d5cfc7f7bd52e53439f1e99f7ae70 100644 |
--- a/Source/core/dom/Node.cpp |
+++ b/Source/core/dom/Node.cpp |
@@ -96,6 +96,8 @@ |
#include "wtf/text/CString.h" |
#include "wtf/text/StringBuilder.h" |
+using namespace std; |
+ |
namespace WebCore { |
using namespace HTMLNames; |
@@ -1620,7 +1622,7 @@ |
unsigned connection = start1->treeScope() != start2->treeScope() ? DOCUMENT_POSITION_DISCONNECTED | DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC : 0; |
// Walk the two chains backwards and look for the first difference. |
- for (unsigned i = std::min(index1, index2); i; --i) { |
+ for (unsigned i = min(index1, index2); i; --i) { |
const Node* child1 = chain1[--index1]; |
const Node* child2 = chain2[--index2]; |
if (child1 != child2) { |