summaryrefslogtreecommitdiff
path: root/Menes
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2017-02-15 01:38:42 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2017-02-15 01:38:42 -0800
commit63755c48fd5fe4f31775e0f38857314879b93f39 (patch)
treec3018c82893e52b80a40b0795ee47001d3318da4 /Menes
parent09e03d2385c301e68025da688831f50dd2e3734d (diff)
Move more of sysroot's sadness into iPhonePrivate.
Diffstat (limited to 'Menes')
-rw-r--r--Menes/Function.h2
-rw-r--r--Menes/ObjectHandle.h2
-rw-r--r--Menes/invocationWithSelector.mm2
-rw-r--r--Menes/yieldToSelector.mm2
4 files changed, 4 insertions, 4 deletions
diff --git a/Menes/Function.h b/Menes/Function.h
index fffdda9..37f8e97 100644
--- a/Menes/Function.h
+++ b/Menes/Function.h
@@ -22,8 +22,6 @@
#ifndef Menes_Function_H
#define Menes_Function_H
-#include "CyteKit/UCPlatform.h"
-
template <typename Result_, typename... Args_>
class Function {
private:
diff --git a/Menes/ObjectHandle.h b/Menes/ObjectHandle.h
index 6369fd0..9b8d57d 100644
--- a/Menes/ObjectHandle.h
+++ b/Menes/ObjectHandle.h
@@ -22,8 +22,6 @@
#ifndef Menes_ObjectHandle_H
#define Menes_ObjectHandle_H
-#include "CyteKit/UCPlatform.h"
-
#include <CoreFoundation/CoreFoundation.h>
#include <Foundation/Foundation.h>
diff --git a/Menes/invocationWithSelector.mm b/Menes/invocationWithSelector.mm
index a2214fb..b730c4d 100644
--- a/Menes/invocationWithSelector.mm
+++ b/Menes/invocationWithSelector.mm
@@ -19,6 +19,8 @@
**/
/* }}} */
+#include "CyteKit/UCPlatform.h"
+
#include "Menes/invocationWithSelector.h"
@implementation NSInvocation (MenesInvocationWithSelector)
diff --git a/Menes/yieldToSelector.mm b/Menes/yieldToSelector.mm
index f8f6203..f47c4a0 100644
--- a/Menes/yieldToSelector.mm
+++ b/Menes/yieldToSelector.mm
@@ -19,6 +19,8 @@
**/
/* }}} */
+#include "CyteKit/UCPlatform.h"
+
#include "Menes/yieldToSelector.h"
@implementation NSObject (MenesYieldToSelector)