Reviewed By: jvillard Differential Revision: D5157470 fbshipit-source-id: 5385b5amaster
parent
2608ec67c3
commit
03bdf0fe2c
@ -1 +1 @@
|
||||
Subproject commit da6b966a35b1183387d51d1f1a87a16200069595
|
||||
Subproject commit 025a3740a6956e112ed0dbc0f87d3f5500d9c52b
|
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (c) 2017 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
int func_with_uinteger_param(NSUInteger n) { return 0; }
|
||||
|
||||
int func_with_integer_param(NSInteger n) { return 0; }
|
||||
|
||||
void calling_funct_with_pointer() {
|
||||
NSString* s = @"Dulma";
|
||||
func_with_uinteger_param(s);
|
||||
}
|
||||
|
||||
void calling_funct_with_pointer1() {
|
||||
NSString* s = @"Dulma";
|
||||
func_with_integer_param(s);
|
||||
}
|
Loading…
Reference in new issue