Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/gallium/drivers/nouveau/codegen/unordered_set.h
4574 views
1
#ifndef __NV50_UNORDERED_SET_H__
2
#define __NV50_UNORDERED_SET_H__
3
4
#if (__cplusplus >= 201103L)
5
#include <unordered_set>
6
#else
7
#include <tr1/unordered_set>
8
#endif
9
10
namespace nv50_ir {
11
12
#if __cplusplus >= 201103L
13
using std::unordered_set;
14
#else
15
using std::tr1::unordered_set;
16
#endif
17
18
} // namespace nv50_ir
19
20
#endif // __NV50_UNORDERED_SET_H__
21
22