151bd66080
Support for Android 4.4 and earlier has already been removed from mesa. Remove this remaining piece from nouveau, too. Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Signed-off-by: Rob Herring <robh@kernel.org>
21 lines
342 B
C++
21 lines
342 B
C++
#ifndef __NV50_UNORDERED_SET_H__
|
|
#define __NV50_UNORDERED_SET_H__
|
|
|
|
#if (__cplusplus >= 201103L)
|
|
#include <unordered_set>
|
|
#else
|
|
#include <tr1/unordered_set>
|
|
#endif
|
|
|
|
namespace nv50_ir {
|
|
|
|
#if __cplusplus >= 201103L
|
|
using std::unordered_set;
|
|
#else
|
|
using std::tr1::unordered_set;
|
|
#endif
|
|
|
|
} // namespace nv50_ir
|
|
|
|
#endif // __NV50_UNORDERED_SET_H__
|