Fix missing namespace

This commit is contained in:
rexy712 2022-02-24 11:03:51 -08:00
parent 700a3484ac
commit bb6cc3e783

View File

@ -160,6 +160,7 @@
#endif //REXY_ENABLE_DEBUG_VERBOSE_OUTPUT #endif //REXY_ENABLE_DEBUG_VERBOSE_OUTPUT
} }
#else #else
namespace rexy::debug{
static constexpr inline void print(...){} static constexpr inline void print(...){}
static constexpr inline void print_succ(...){} static constexpr inline void print_succ(...){}
static constexpr inline void print_info(...){} static constexpr inline void print_info(...){}
@ -172,6 +173,7 @@
static constexpr inline void print_warn(...){} static constexpr inline void print_warn(...){}
static constexpr inline void print_error(...){} static constexpr inline void print_error(...){}
} }
}
#endif //REXY_ENABLE_DEBUG_OUTPUT #endif //REXY_ENABLE_DEBUG_OUTPUT
#endif #endif