This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/util/compile_time_helpers.hpp

16 lines
217 B
C++
Raw Normal View History

2023-04-14 18:54:07 +02:00
#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;
};
}