1
0
This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
modern_cpp_tutorial/chapters/chapter_02/include/if_constexpr.h
2023-10-22 22:06:11 +02:00

10 lines
209 B
C++

#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"; }
};