feat: if constexpr

This commit is contained in:
Michael Mandl 2023-10-22 21:43:17 +02:00
parent 161e768069
commit 09a1efeedf
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 43 additions and 2 deletions

View file

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