Brian Carlstrom | 44753c3 | 2011-08-17 22:22:11 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | #ifndef ART_SRC_CLASS_UNORDERED_SET_H_ | ||||
4 | #define ART_SRC_CLASS_UNORDERED_SET_H_ | ||||
5 | |||||
6 | #ifdef __ANDROID__ | ||||
7 | #include <unordered_set> | ||||
8 | #else | ||||
9 | #include <tr1/unordered_set> | ||||
10 | #endif | ||||
11 | |||||
12 | #endif // ART_SRC_CLASS_UNORDERED_SET_H_ |