使用函数指针声明编译错误

时间:2014-06-19 04:09:34

标签: ios compiler-errors openssl

我尝试将openssl导入我的swift项目,但是当我在#import "ras.h"中添加xxx-Bridging-Header.h时,我收到了下面的编译错误。

<unknown>:0: error: /Users/wenyun/workspace/newsvn/newios/ios/VanJoyPay2/VanJoyPay2/opensource/OpenSSLRSAWrapper/openssl/include/openssl/rsa.h:100: expected ')'
<unknown>:0: note: /Users/wenyun/workspace/newsvn/newios/ios/VanJoyPay2/VanJoyPay2/opensource/OpenSSLRSAWrapper/o penssl/include/openssl/rsa.h:100: to match this '('

ras.h:100是:

int (*rsa_mod_exp)(BIGNUM *r0,const BIGNUM *I,RSA *rsa,BN_CTX *ctx); /* Can be null */

我通过将const BIGNUM *I重命名为const BIGNUM *i来修复错误。有人知道为什么角色I如此特别吗?

我今天做了另一次测试,结果看起来很奇怪。 我创建了一个新的swift项目,编写了3个头文件:

test.h
int test(char *I);

test2.h
#import "test3.h"
#import <Foundation/Foundation.h>

test3.h
int test3();


xxx-Bridging-Header.h
#import "test2.h"
#import "test.h"

我再次遇到编译错误!

最后,删除&#34; #import&#34;让一切都好。

  

Why the character "I" could not work together with #import <xxx>?

1 个答案:

答案 0 :(得分:9)

问题与Swift无关。它是由I文件中/usr/include/complex.h的先前定义引起的(正如Brian Chen所猜测的那样)。

以下是编译器报告的违规行:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator8.1.sdk/usr/include/complex.h:42:11: note: expanded from macro 'I'
#define I _Complex_I