Added basic framework for creating cxx20 test cases

This commit is contained in:
Bartek Kryza
2023-02-15 22:13:38 +01:00
parent 6be07a7dfa
commit 040403382a
8 changed files with 153 additions and 31 deletions

View File

@@ -34,7 +34,7 @@ template <typename T> struct BB<T, std::string> {
void bb1(T t, std::string f) { aa_->aa2(t); }
void bb2(T t, std::string f) { aa_->aa1(t); }
BB<T, std::string>(AA<T> *aa)
BB(AA<T> *aa)
: aa_{aa}
{
}
@@ -46,7 +46,7 @@ template <typename T> struct BB<T, float> {
void bb1(T t, float f) { bb2(t, f); }
void bb2(T t, float f) { aa_.aa2(t); }
BB<T, float>(AA<T> &aa)
BB(AA<T> &aa)
: aa_{aa}
{
}