engine/dep/include/ctti/symbol_from_hash.hpp
2024-12-02 18:48:18 -06:00

16 lines
265 B
C++

#ifndef CTTI_SYMBOL_FROM_HASH_HPP
#define CTTI_SYMBOL_FROM_HASH_HPP
#include <cstddef>
namespace ctti
{
template<std::uint64_t Hash>
using symbol_from_hash = decltype(ctti_symbol_from_hash(ctti::meta::uint64_t<Hash>()));
}
#endif // CTTI_SYMBOL_FROM_HASH_HPP