Skip to content

Commit

Permalink
only c++11 and above
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyiwu committed Jul 22, 2024
1 parent ade0331 commit 467c846
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions include/limonp/StdExtension.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,8 @@

#include <map>

#ifdef __APPLE__
#include <unordered_map>
#include <unordered_set>
#elif(__cplusplus >= 201103L)
#include <unordered_map>
#include <unordered_set>
#elif defined _MSC_VER
#include <unordered_map>
#include <unordered_set>
#else
#include <tr1/unordered_map>
#include <tr1/unordered_set>
namespace std {
using std::tr1::unordered_map;
using std::tr1::unordered_set;
}

#endif

#include <set>
#include <string>
Expand Down

0 comments on commit 467c846

Please sign in to comment.