Differences From Artifact [0155d37d08046666]:
- File
TZTesterSp/template.cpp
- 2011-05-19 07:51:05 - part of checkin [b344f7b953] on branch trunk - Added my standard template for TZTester (user: kinaba) [annotate]
To Artifact [56e8b77f261a915b]:
- File
TZTesterSp/template.cpp
- 2011-11-12 23:35:53 - part of checkin [3de32bb725] on branch trunk - 523 (user: kinaba) [annotate]
11 11 #include <functional>
12 12 #include <complex>
13 13 #include <queue>
14 14 #include <stack>
15 15 #include <cmath>
16 16 #include <cassert>
17 17 #include <cstring>
18 +#ifdef __GNUC__
19 +#include <ext/hash_map>
20 +#define unordered_map __gnu_cxx::hash_map
21 +#else
22 +#include <unordered_map>
23 +#endif
18 24 using namespace std;
19 25 typedef long long LL;
20 26 typedef complex<double> CMP;
21 27
22 28 class $CLASSNAME$ { public:
23 29 $RC$ $METHODNAME$($METHODPARMS$)
24 30 {
25 31 }
26 32 };
27 33
28 34 $TESTCODE$