我得看起來像一個警告:迂腐ISO標準
In file included from /[myapplication]/[myfile].h:262:9: erreur: extra ‘;’ [-Wpedantic]
不過,我想,忽略pedantic
錯誤是對ISO C/C++規範。這是真的嗎?
編輯:我編輯迅速看到,該協議棧西這裏充滿downvote,快樂的人:
using namespace my:name:space;
namespace my
{
namespace name
{
namespace space
{
class myclass
{
public:
[Lots of code like the one below]
/** [Comments] */
template<class T>
static bool
getServerProxy(const std::string & p_sServerName,
int p_iProxyInstanceID, shared_ptr<T> &p_ServerProxy)
{
return getServerProxy(p_sServerName, -1, p_iProxyInstanceID,
p_ServerProxy);
}
; // Pedantic Error Shown here
[Lots of code like the one up there]
};
}
}
}
ERREUR,請告訴我們問題 – Columbo
文件,請你在哪裏得到這個警告添加代碼.. – HadeS
你可以只取出多餘的分號? – Barry