Iros
 
Loading...
Searching...
No Matches
is_constant_evaluated.h
Go to the documentation of this file.
1#pragma once
2
3namespace di::util {
4constexpr auto is_constant_evaluated() noexcept -> bool {
5 if consteval {
6 return true;
7 } else {
8 return false;
9 }
10}
11}
12
13namespace di {
15}
Definition vocab.h:96
constexpr auto is_constant_evaluated() noexcept -> bool
Definition is_constant_evaluated.h:4
Definition zstring_parser.h:9