Added basic framework for creating cxx20 test cases
This commit is contained in:
@@ -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}
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user