Commit 5082e02b6b893e13903ad0c5ed07e7057366cce8

Authored by Scott Klum
1 parent 42ba4f37

Updated some stasm files to get rid of compiler warnings

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 {
... ...
openbr/plugins/stasm4.cmake
1   -set(BR_WITH_STASM4 OFF CACHE BOOL "Build with Stasm")
  1 +set(BR_WITH_STASM4 ON CACHE BOOL "Build with Stasm")
2 2  
3 3 if(${BR_WITH_STASM4})
4 4 find_package(Stasm4 REQUIRED)
... ...