summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-06-15 18:48:11 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-06-15 18:48:11 -0700
commitca030edcf324a3643ce399f6803ef0f0607ab558 (patch)
treec4581d4172b5a8fcaf67e4ee6e91e239c3d0c0c8
parent0debf95fb368d90ba9a132d6dbf3314063a1e8e6 (diff)
downloadsdl_ios-ca030edcf324a3643ce399f6803ef0f0607ab558.tar.gz
Added missing header for ULONG_MAX.
-rw-r--r--SmartDeviceLink/SDLPinchGesture.m1
-rw-r--r--SmartDeviceLink/SDLTouch.m1
2 files changed, 2 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLPinchGesture.m b/SmartDeviceLink/SDLPinchGesture.m
index 0011f83c4..6dc08fcd0 100644
--- a/SmartDeviceLink/SDLPinchGesture.m
+++ b/SmartDeviceLink/SDLPinchGesture.m
@@ -7,6 +7,7 @@
//
#include "SDLPinchGesture.h"
+#import <limits.h>
SDLPinchGesture SDLPinchGestureMake(SDLTouch firstTouch, SDLTouch secondTouch) {
SDLPinchGesture pinchGesture;
diff --git a/SmartDeviceLink/SDLTouch.m b/SmartDeviceLink/SDLTouch.m
index 5c51f3457..01c189747 100644
--- a/SmartDeviceLink/SDLTouch.m
+++ b/SmartDeviceLink/SDLTouch.m
@@ -7,6 +7,7 @@
//
#include "SDLTouch.h"
+#import <limits.h>
SDLTouch const SDLTouchZero = {ULONG_MAX, {0, 0}, ULONG_MAX};