Add some "std".

This commit is contained in:
vng 2011-02-04 10:31:43 +02:00 committed by Alex Zolotarev
parent b782031fbb
commit 85b38d169a
2 changed files with 13 additions and 0 deletions

View file

@ -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
View 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