開發平台(Platform): (Ex: Win10, Linux, ...)
gun g++
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
Linux
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
class Message
{
Event *pEvent;
inline operator Event *()
{
return pEvent;
}
}
問題(Question):
pfEnentQ->add(*pMessage) 應該會轉成 Event* 傳入
但是卻傳入Event& (Refance)
餵入的資料(Input):
*pMessage
預期的正確結果(Expected Output):
pass Event* to EventQ::add(Event *)
錯誤結果(Wrong Output):
https://goo.gl/fpWBSK
程式碼(Code):(請善用置底文網頁, 記得排版)
http://codepad.org/fKzOgowK
補充說明(Supplement):