From 768e93ca0ef6631aebec2bdd4af3dac21564d96a Mon Sep 17 00:00:00 2001
From: Vasyl Vavrychuk <vvavrychuk@gmail.com>
Date: Tue, 16 Oct 2012 02:02:25 +0300
Subject: [PATCH] fixed hash_map compilation

---
 include/ext/hash_map | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/ext/hash_map b/include/ext/hash_map
index bebdccb..6626fb9 100644
--- a/include/ext/hash_map
+++ b/include/ext/hash_map
@@ -508,7 +508,7 @@ private:
     typedef typename __table::__node_allocator             __node_allocator;
     typedef typename __table::__node                       __node;
     typedef __hash_map_node_destructor<__node_allocator>   _Dp;
-    typedef unique_ptr<__node, _Dp>                         __node_holder;
+    typedef _VSTD::unique_ptr<__node, _Dp>                 __node_holder;
     typedef allocator_traits<allocator_type>               __alloc_traits;
 public:
     typedef typename __alloc_traits::pointer         pointer;
@@ -785,7 +785,7 @@ private:
     typedef typename __table::__node_allocator             __node_allocator;
     typedef typename __table::__node                       __node;
     typedef __hash_map_node_destructor<__node_allocator>   _Dp;
-    typedef unique_ptr<__node, _Dp>                         __node_holder;
+    typedef _VSTD::unique_ptr<__node, _Dp>                 __node_holder;
     typedef allocator_traits<allocator_type>               __alloc_traits;
 public:
     typedef typename __alloc_traits::pointer         pointer;
-- 
1.7.11.7

