当我尝试编译我的应用程序时,我正在使用react-native-pusher-push-notifications在我的应用程序中获取通知,我收到此错误:
未知类型名称'namespace'
namespace std{ //Expected ';' after top level declarator
using :: va_list;
}
我试图以这种方式修复我的代码,但是遇到了相同的错误:
#ifndef __CSTDARG_HEADER #define __CSTDARG_HEADER
#include <stdarg.h>
namespace std{
using :: va_list;
}
#else
typedef struct std std; // Sets up incomplete type for C code
#endif