forked from wx257osn2/cxx_adc2020_sal_wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
57 lines (53 loc) · 1.75 KB
/
main.cpp
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
#include<cassert>
#include<algorithm>
#include"super-awesome-library-that-has-breaking-changes-frequently.hpp"
#include"sal_wrapper.hpp"
namespace sal = super_awesome_library_that_has_breaking_changes_frequently;
struct T : sal_wrapper::excellent_base{
constexpr T():l{}{}
int l;
void d(int line)override{
this->l = line;
}
};
int main(){
#if SUPER_AWESOME_LIBRARY_THAT_HAS_BREAKING_CHANGES_FREQUENTLY_VERSION == 1
static_assert(sal_wrapper::a(sal::awesome_type{}, 2) == sal::awesome_type{}.a(2));
static_assert(sal_wrapper::b(sal::awesome_type{}, 2) == sal::awesome_type{}.b(2));
static_assert(sal_wrapper::c(42, 42.f) == sal::c(42, 42.f));
{
T t = {};
struct U : sal::excellent_type{
constexpr U():l{}{}
int l;
void d(int line)override{
this->l = line;
}
}u = {};
assert((sal::use_d(t), sal::use_d(u), t.l == u.l));
std::size_t i = 0;
for(auto&& x : sal_wrapper::hypers(t))
assert(x.access() == u.access_hyper_data(i++));
assert(i == u.hyper_size());
}
#elif SUPER_AWESOME_LIBRARY_THAT_HAS_BREAKING_CHANGES_FREQUENTLY_VERSION == 2
static_assert(sal_wrapper::a(sal::awesome_type{}, 2) == sal::awesome_type{}.a2(2));
static_assert(sal_wrapper::b(sal::awesome_type{}, 2) == *sal::awesome_type{}.b(2));
static_assert(sal_wrapper::c(42, 42.f) == sal::awesome_type::c(42, 42.f));
{
T t = {};
struct U : sal::excellent_type{
constexpr U():l{}{}
int l;
void d(int line, sal::super_flags)override{
this->l = line;
}
}u = {};
assert((sal::use_d(t), sal::use_d(u), t.l == u.l));
auto it = u.hypers().begin();
for(auto&& x : sal_wrapper::hypers(t))
assert(x.access() == (it++)->access());
assert(it == u.hypers().end());
}
#endif
}