Skip to content

Commit

Permalink
Merge pull request yanyiwu#126 from maliubiao/master
Browse files Browse the repository at this point in the history
修正c++版本判断兼容性问题
  • Loading branch information
yanyiwu authored Mar 2, 2019
2 parents 31eed03 + 07382b9 commit 8fca730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/limonp/StdExtension.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8fca730

Please sign in to comment.