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