mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
修正c++版本判断兼容性问题
c++11以上,这个分支会跳到错误的地方,错误的使用using std::tr1::unordered_map ,导致undefined symbol.
This commit is contained in:
parent
31eed03518
commit
07382b9cb1
2
deps/limonp/StdExtension.hpp
vendored
2
deps/limonp/StdExtension.hpp
vendored
@ -6,7 +6,7 @@
|
||||
#ifdef __APPLE__
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
#elif(__cplusplus == 201103L)
|
||||
#elif(__cplusplus >= 201103L)
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
#elif defined _MSC_VER
|
||||
|
Loading…
x
Reference in New Issue
Block a user