Commit 5082e02b6b893e13903ad0c5ed07e7057366cce8
1 parent
42ba4f37
Updated some stasm files to get rid of compiler warnings
Showing
2 changed files
with
1 additions
and
11 deletions
3rdparty/stasm4.0.0/stasm/hatdesc.cpp
| ... | ... | @@ -9,16 +9,6 @@ |
| 9 | 9 | |
| 10 | 10 | #define CACHE 1 // define to 0 if your compiler doesn't support hash_map |
| 11 | 11 | // Stasm runs faster if 1 |
| 12 | -#if CACHE | |
| 13 | - // define hash_map, current implementations are compiler dependent (2013) | |
| 14 | - #ifdef _MSC_VER // microsoft | |
| 15 | - #include <hash_map> | |
| 16 | - using namespace stdext; | |
| 17 | - #else // assume gcc | |
| 18 | - #include <ext/hash_map> | |
| 19 | - using namespace __gnu_cxx; | |
| 20 | - #endif | |
| 21 | -#endif | |
| 22 | 12 | |
| 23 | 13 | namespace stasm |
| 24 | 14 | { | ... | ... |