fix macos build

This commit is contained in:
HJfod 2022-10-17 16:08:12 +03:00
parent c07efcfe15
commit a0e56c044b
2 changed files with 2 additions and 2 deletions
loader
include/Geode/c++stl
src/hooks

View file

@ -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() {

View file

@ -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;