3.15版本的一个编译错误

In file included from Z:/cocos2d-x-3.15/MyGameDir/XXX(我的工程名)/proj.android-studio/app/jni/…/…/…/cocos2d/cocos/editor-support/cocostudio/LocalizationManager.cpp:4:
Z:/cocos2d-x-3.15/MyGameDir/XXX(我的工程名)/proj.android-studio/app/jni/…/…/…/cocos2d/cocos/.\editor-support/cocostudio/CSLanguageDataBinary_generated.h:81:88: error: no matching member function for call to ‘VerifyBuffer’
inline bool VerifyLanguageSetBuffer(flatbuffers::Verifier &verifier) { return verifier.VerifyBuffer(); }
在flatbuffers::Verifier这个类的头文件里,这个成员函数的声明是带一个参数的

// Verify this whole buffer, starting with root type T.
template bool VerifyBuffer(const char *identifier) {
return VerifyBufferFromStart(identifier, buf_);
}
平台:windows 7 64位,android-ndk-r14b,不知道目前我该如何修正…