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

前端之家收集整理的这篇文章主要介绍了ios – 使用函数指针声明编译错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图将openssl导入到我的 swift项目中,但是当我在xxx-Bridging-Header.h中添加了#import“ras.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来修复错误.有人知道我为什么这么特别的角色?

我今天做了另一个测试,结果看起来很奇怪.
我创建了一个新的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"

我再次收到编译错误

最后,删除“#import”使一切都可以.

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

解决方法

问题不在于Swift.它是由/usr/include/complex.h文件中的I的以前定义引起的(如 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
原文链接:https://www.f2er.com/iOS/337567.html

猜你在找的iOS相关文章