Skip to content

Commit

Permalink
Avoid using tr1 even on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalibera committed Feb 2, 2024
1 parent 6927517 commit 037e392
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions src/cyclops/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,10 @@
// }
// #endif

#ifdef WIN_BUILD
#include <tr1/unordered_map>
namespace bsccs {
using std::tr1::unordered_map;
}
#else
#include <unordered_map>
namespace bsccs {
using std::unordered_map;
}
#endif
#include <unordered_map>
namespace bsccs {
using std::unordered_map;
}

namespace bsccs {

Expand Down

0 comments on commit 037e392

Please sign in to comment.