#ifndef RFL_INTERNAL_ISLITERAL_HPP_ #define RFL_INTERNAL_ISLITERAL_HPP_ #include #include "../Literal.hpp" #include "StringLiteral.hpp" namespace rfl { namespace internal { template class is_literal; template class is_literal : public std::false_type {}; template class is_literal> : public std::true_type {}; template constexpr bool is_literal_v = is_literal>>::value; } // namespace internal } // namespace rfl #endif