Skip to content

Commit

Permalink
Fix imports for platforms not defining std::unordered_set.
Browse files Browse the repository at this point in the history
  • Loading branch information
emcrisostomo committed Feb 25, 2014
1 parent b0770c7 commit 227791e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ template <typename K>
using fsw_hash_set = unordered_set<K>;

#else
#include <map>
#include <set>

template <typename K>
using fsw_hash_set = set<K>;
Expand Down

0 comments on commit 227791e

Please sign in to comment.