Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_set.h
| Context not available. | |||||
| #define __UTIL_SET_H__ | #define __UTIL_SET_H__ | ||||
| #include <set> | #include <set> | ||||
| #include <boost/tr1/unordered_set.hpp> | #if __cplusplus > 199711L | ||||
| # include <unordered_set> | |||||
| #else | |||||
| # include <boost/tr1/unordered_set.hpp> | |||||
| #endif | |||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| using std::set; | using std::set; | ||||
| #if __cplusplus > 199711L | |||||
| using std::unordered_set; | |||||
| #else | |||||
| using std::tr1::unordered_set; | using std::tr1::unordered_set; | ||||
| #endif | |||||
| CCL_NAMESPACE_END | CCL_NAMESPACE_END | ||||
| #endif /* __UTIL_SET_H__ */ | #endif /* __UTIL_SET_H__ */ | ||||
| Context not available. | |||||