Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion loader/include/Geode/cocos/base_nodes/CCNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ class CC_DLL CCNode : public CCObject
// CCArrayExt is defined in geode/utils/cocos.hpp, which we cannot include due to circular includes.
// This is an incredibly hacky way to still be able to use the type

using CCArrayExt = geode::CCArrayExtCheck<T, PleaseDontChangeMe>::type;
using CCArrayExt = typename geode::CCArrayExtCheck<T, PleaseDontChangeMe>::type;
static_assert(!std::is_void_v<CCArrayExt>, "Please include <Geode/utils/cocos.hpp> to use getChildrenExt()");

return CCArrayExt(getChildren());
Expand Down
4 changes: 2 additions & 2 deletions loader/include/Geode/utils/Task.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ namespace geode {
return {};
}

void return_base(MyTask::Type value) {
void return_base(typename MyTask::Type value) {
MyTask::finish(m_handle.lock(), std::move(value));
}

Expand Down Expand Up @@ -1094,7 +1094,7 @@ namespace geode {
);
}

Task<T, P>::Type await_resume() {
typename Task<T, P>::Type await_resume() {
return std::move(*task.getFinishedValue());
}
};
Expand Down