Skip to content

Commit

Permalink
Merge pull request #74 from kalibera/avoid-tr1-on-windows
Browse files Browse the repository at this point in the history
Avoid using tr1 even on Windows.
  • Loading branch information
msuchard authored Feb 2, 2024
2 parents 6927517 + 037e392 commit 5b1f4d6
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 5b1f4d6

Please sign in to comment.