1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/**
* NOTE:
*
* DO NOT INCLUDE EATest/EATest.h or ANY OTHER HEADER
* There is a bug in MSVC whereby pushing/poping all warnings from a header does not reenable all warnings
* in the TU that included the header.
* For example C4805 will not reenabled.
*/
#include <EASTL/variant.h>
int TestVariantGeneratingComparisonOverloads()
{
int nErrorCount = 0;
{
eastl::variant<int, float, bool> a;
eastl::variant<int, float, bool> b;
auto r = a == b;
nErrorCount += !r;
}
{
eastl::variant<int, float, bool> a;
eastl::variant<int, float, bool> b;
bool r = (a == b);
nErrorCount += !r;
}
// A variant is permitted to hold the same type more than once, and to hold differently cv-qualified versions of the same type.
{
eastl::variant<int, int, int> a;
eastl::variant<int, int, int> b;
bool r = (a == b);
nErrorCount += !r;
}
{
eastl::variant<signed int, unsigned int> a;
eastl::variant<signed int, unsigned int> b;
bool r = (a == b);
nErrorCount += !r;
}
{
eastl::variant<int, bool> a;
eastl::variant<int, bool> b;
bool r = (a == b);
nErrorCount += !r;
}
{
eastl::variant<volatile int, int, const int, const volatile int> a;
eastl::variant<volatile int, int, const int, const volatile int> b;
bool r = (a == b);
nErrorCount += !r;
}
{
eastl::variant<volatile int, int, const int, const volatile int, bool> a;
eastl::variant<volatile int, int, const int, const volatile int, bool> b;
bool r = (a == b);
nErrorCount += !r;
}
return nErrorCount;
}
|