1
0
Fork 0
modern_cpp_tutorial/chapters/chapter_02/include/if_constexpr.h

10 lines
209 B
C
Raw Normal View History

2023-10-22 19:43:17 +00:00
#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"; }
};