TmpMenu/src/util/compile_time_helpers.hpp
2023-04-14 17:54:07 +01:00

16 lines
217 B
C++

#pragma once
namespace big
{
template<uint32_t hash>
struct compile_time_helper
{
static_assert(hash == -1);
static constexpr bool print_hash = (hash == -1);
};
struct cstxpr_str
{
const char* str;
};
}