Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
squash! use <set> on OSX
  • Loading branch information
Gabriel Schulhof committed Mar 15, 2019
commit 54c268eb2b7f572505e58cb9cf7b956e0ec6db3d
6 changes: 6 additions & 0 deletions src/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@

#include <stdint.h>
#include <vector>

#ifdef __APPLE__
#include <set>
#define unordered_set set
#else
#include <unordered_set>
#endif

// Caveat emptor: we're going slightly crazy with macros here but the end
// hopefully justifies the means. We have a lot of per-context properties
Expand Down