Added some std functions.
This commit is contained in:
parent
6697909742
commit
a5f31d5bf2
2 changed files with 4 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <iterator>
|
||||
|
||||
using std::back_inserter;
|
||||
using std::distance;
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <map>
|
||||
#include <boost/unordered_map.hpp>
|
||||
|
||||
using std::map;
|
||||
using boost::unordered_map;
|
||||
|
|
Reference in a new issue