From a5f31d5bf210176cae2afd32c29f9bfea45a210c Mon Sep 17 00:00:00 2001 From: vng Date: Thu, 8 Aug 2013 13:51:36 +0300 Subject: [PATCH] Added some std functions. --- std/iterator.hpp | 2 ++ std/map.hpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/std/iterator.hpp b/std/iterator.hpp index 5c98915..88a0081 100644 --- a/std/iterator.hpp +++ b/std/iterator.hpp @@ -1,4 +1,6 @@ #pragma once #include + using std::back_inserter; +using std::distance; diff --git a/std/map.hpp b/std/map.hpp index 3a07eda..d3bbfb2 100644 --- a/std/map.hpp +++ b/std/map.hpp @@ -1,5 +1,7 @@ #pragma once #include +#include using std::map; +using boost::unordered_map;