blob: d153e70af9446f14e8b533943e7c602347b3744e (
plain)
1
2
3
4
5
6
|
#if __has_include (<tr1/unordered_set>)
# include <tr1/unordered_set>
#endif
#if __has_include("unordered_set.h") || __has_include_next (<tr1/unordered_set>)
# include <tr1/unordered_set>
#endif
|