AsmGrader 0.0.0
Loading...
Searching...
No Matches
always_false.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <type_traits>
4
5namespace asmgrader {
6
9
10template <typename T>
11struct always_false : std::false_type
12{
13};
14
15template <typename T>
17
18} // namespace asmgrader
Definition asm_buffer.hpp:19
constexpr bool always_false_v
Definition always_false.hpp:16
Very simple type for better semantics when we want static_assert(false) to work inside primary class ...
Definition always_false.hpp:12