mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-24 05:14:40 -04:00
fix macos build
This commit is contained in:
parent
c07efcfe15
commit
a0e56c044b
2 changed files with 2 additions and 2 deletions
loader
|
@ -311,7 +311,7 @@ namespace gd {
|
|||
m_start = tmp;
|
||||
m_finish = m_start + input.size();
|
||||
m_capacity_end = m_start + input.size();
|
||||
std::copy(input.begin(), input.end(), std::begin(tmp));
|
||||
std::copy(input.begin(), input.end(), tmp);
|
||||
}
|
||||
|
||||
T& front() {
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#include <Geode/utils/Ref.hpp>
|
||||
#include <Geode/utils/cocos.hpp>
|
||||
#include <Geode/modify/Field.hpp>
|
||||
#include <Geode/modify/CCNode.hpp>
|
||||
|
||||
USE_GEODE_NAMESPACE();
|
||||
using namespace geode::modifier;
|
||||
|
@ -59,7 +60,6 @@ public:
|
|||
};
|
||||
|
||||
// proxy forwards
|
||||
#include <Geode/modify/CCNode.hpp>
|
||||
class $modify(ProxyCCNode, CCNode) {
|
||||
virtual CCObject* getUserObject() {
|
||||
return GeodeNodeMetadata::set(this)->m_userObject;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue