aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMExceptionalInlines.m
diff options
context:
space:
mode:
Diffstat (limited to 'Foundation/GTMExceptionalInlines.m')
-rw-r--r--Foundation/GTMExceptionalInlines.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/Foundation/GTMExceptionalInlines.m b/Foundation/GTMExceptionalInlines.m
index 120e235..d803ea9 100644
--- a/Foundation/GTMExceptionalInlines.m
+++ b/Foundation/GTMExceptionalInlines.m
@@ -22,6 +22,10 @@ NSRange GTMNSMakeRange(NSUInteger loc, NSUInteger len) {
return NSMakeRange(loc, len);
}
+CFRange GTMCFRangeMake(NSUInteger loc, NSUInteger len) {
+ return CFRangeMake(loc, len);
+}
+
CGPoint GTMCGPointMake(CGFloat x, CGFloat y) {
return CGPointMake(x, y);
}