开发平台(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):