好吧,我有一個類移植到Linux的錯誤:之前預期初始化「:」令牌
class DLL_LIB a: public b
{
}
gcc的說,
expected initializer before ‘:’ token
我不明白爲什麼。也許是與鏈接DLL庫的proplem,但我這樣做:
#ifdef _WIN32
#define DLL_LIB __declspec(dllexport)
#else
#define DLL_LIB __declspec(dllimport)
#endif
雖然我已經做了假的DLL LIB我不能避免「預期初始化」的錯誤
謝謝你很多!
您正在使用特定於MS的關鍵字 – 2013-05-11 10:59:18