#ifndef GEODE_CORE_META_COMMON_HPP #define GEODE_CORE_META_COMMON_HPP #include namespace geode::core::meta { template static constexpr bool any_of = (std::is_same_v || ...); template static constexpr bool always_false = false; } #endif /* GEODE_CORE_META_COMMON_HPP */