Added some std functions.

This commit is contained in:
vng 2013-08-08 13:51:36 +03:00
parent 6697909742
commit a5f31d5bf2
2 changed files with 4 additions and 0 deletions

View file

@ -1,4 +1,6 @@
#pragma once
#include <iterator>
using std::back_inserter;
using std::distance;

View file

@ -1,5 +1,7 @@
#pragma once
#include <map>
#include <boost/unordered_map.hpp>
using std::map;
using boost::unordered_map;