mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
fix formatting of Mod*
This commit is contained in:
parent
f4f7b66437
commit
b61013661e
1 changed files with 3 additions and 3 deletions
|
@ -16,6 +16,8 @@ namespace geode {
|
|||
GEODE_DLL std::string format_as(cocos2d::CCObject const*);
|
||||
GEODE_DLL std::string format_as(cocos2d::CCArray*);
|
||||
GEODE_DLL std::string format_as(cocos2d::CCNode*);
|
||||
class Mod;
|
||||
GEODE_DLL std::string format_as(Mod*);
|
||||
}
|
||||
|
||||
namespace geode::log::impl {
|
||||
|
@ -25,7 +27,7 @@ namespace geode::log::impl {
|
|||
|
||||
template <class T>
|
||||
GEODE_INLINE GEODE_HIDDEN decltype(auto) wrapCocosObj(T&& value) {
|
||||
if constexpr (std::is_convertible_v<T, const cocos2d::CCObject*>) {
|
||||
if constexpr (std::is_pointer_v<std::decay_t<T>> && requires(T ptr) { geode::format_as(ptr); }) {
|
||||
return geode::format_as(value);
|
||||
} else {
|
||||
return std::forward<T>(value);
|
||||
|
@ -66,8 +68,6 @@ namespace geode {
|
|||
class Mod;
|
||||
Mod* getMod();
|
||||
|
||||
GEODE_DLL std::string format_as(Mod*);
|
||||
|
||||
namespace log {
|
||||
using log_clock = std::chrono::system_clock;
|
||||
GEODE_DLL std::string generateLogName();
|
||||
|
|
Loading…
Add table
Reference in a new issue