We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UE版本是5.2.1 windows使用visual studio 2022 打包时,经常报SafeDelete错误,找不到报错的位置 我使用mac打包了一下,也报错,并且显示出报错位置: NiagaraShared.h(302,48): Error : expected unqualified-id ~FNiagaraDataInterfaceParamRef() { Parameters.SafeDelete(); } ^ SluaUtil.h(27,25): Reference : expanded from macro 'SafeDelete' #define SafeDelete(ptr) { if(ptr) { delete ptr;ptr=nullptr; } } ^ 1 error generated.
The text was updated successfully, but these errors were encountered:
应该是宏导致的,可以考虑把它去掉,slua代码里面的都手动改下
Sorry, something went wrong.
Fixed Tencent#590
7faeee4
好的,谢谢,可以了
No branches or pull requests
UE版本是5.2.1
windows使用visual studio 2022
打包时,经常报SafeDelete错误,找不到报错的位置
我使用mac打包了一下,也报错,并且显示出报错位置:
NiagaraShared.h(302,48): Error : expected unqualified-id
~FNiagaraDataInterfaceParamRef() { Parameters.SafeDelete(); }
^
SluaUtil.h(27,25): Reference : expanded from macro 'SafeDelete'
#define SafeDelete(ptr) { if(ptr) { delete ptr;ptr=nullptr; } }
^
1 error generated.
The text was updated successfully, but these errors were encountered: