feat: variadic templates

This commit is contained in:
Michael Mandl 2023-11-04 18:20:13 +01:00
parent f3c8cad317
commit db87dfcf1c
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 50 additions and 1 deletions

View file

@ -0,0 +1,10 @@
#pragma once
#include "chapter_interface.h"
class VariadicTemplates : public ChapterTest {
virtual void run() override;
virtual const char *name() const override {
return "Variadic templates test";
}
};