Added some std headers.
This commit is contained in:
parent
0dd6e53803
commit
48d80630c5
4 changed files with 13 additions and 0 deletions
|
@ -5,3 +5,5 @@
|
|||
using std::equal;
|
||||
using std::min;
|
||||
using std::max;
|
||||
using std::transform;
|
||||
using std::equal_range;
|
||||
|
|
6
std/array.hpp
Normal file
6
std/array.hpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <boost/array.hpp>
|
||||
|
||||
template <class T, size_t N>
|
||||
inline size_t ArraySize(T (&) [N]) { return N; }
|
4
std/iterator.hpp
Normal file
4
std/iterator.hpp
Normal file
|
@ -0,0 +1,4 @@
|
|||
#pragma once
|
||||
|
||||
#include <iterator>
|
||||
using std::back_inserter;
|
|
@ -2,4 +2,5 @@
|
|||
|
||||
#include <utility>
|
||||
|
||||
using std::pair;
|
||||
using std::make_pair;
|
||||
|
|
Reference in a new issue