forked from organicmaps/organicmaps
Add some "std".
This commit is contained in:
parent
b782031fbb
commit
85b38d169a
2 changed files with 13 additions and 0 deletions
|
@ -14,6 +14,7 @@ using std::max_element;
|
|||
using std::min;
|
||||
using std::next_permutation;
|
||||
using std::sort;
|
||||
using std::stable_sort;
|
||||
using std::swap;
|
||||
using std::upper_bound;
|
||||
using std::unique;
|
||||
|
|
12
std/stack.hpp
Normal file
12
std/stack.hpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "common_defines.hpp"
|
||||
|
||||
#ifdef new
|
||||
#undef new
|
||||
#endif
|
||||
|
||||
#include <stack>
|
||||
using std::stack;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
Loading…
Add table
Reference in a new issue