我正在将一些代码从Visual Studio移植到Mingw GCC。这个代码在visual studio上运行正常,但是当我尝试在Mingw中构建它时,我遇到了以下问题。代码如下:
HeaderFile
template <MThread Thread>
class AFWork : public EffectFramework<Thread>
{
public:
AFWork(HINSTANCE hinst, HWND hWindow,
const std::wstring& stSharedDataPath,
const std::wstring& stGameDataPath,
const std::wstring& stExtendedGameDataPath,
int nScrWidth, int nScrHeight);
virtual ~AFWork(void);
...
...
};
上面引用的基类的另一个头文件是:
HeaderFile
template <MThread Thread>
class EffectFramework : public ktWin32Framework
{
public:
typedef boost::function<void (int window_no, HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)> WindowProcedure;
EffectFramework<Thread>( std::wstring& name,
std::wstring& dataDirPrefix,
VSYNC vsync,
HINSTANCE hinst,
HINSTANCE hprevinst,
LPSTR args,
int mode,
IApplicationManager* appl_manager = NULL);
....
....
};
派生类
的构造函数的实现 template <MThread Thread>
AFWork<Thread>::AFWork(HINSTANCE hinst,
HWND hWindow,
const std::wstring& stSharedDataPath,
const std::wstring& stGameDataPath,
const std::wstring& stExtendedDataPath,
int nScrWidth,
int nScrHeight)
: EffectFramework<Thread>::EffectFramework(wstring(L"ArtViewer"), wstring(L""), VSYNC::VSYNC_1, hinst, NULL, NULL, 0, NULL) <---ERROR
{
}
我得到的错误就是这个
error: no matching function for call to 'T_Wrapper::EffectFramework<(T_Wrapper::T_Thread)0u>::EffectFramework(std::wstring, std::wstring, T_Wrapper::VSYNC, HINSTANCE__*&, int, int, int, int)'|
有关我为什么会收到此错误以及如何解决此问题的任何建议?
答案 0 :(得分:1)
似乎来自EffectFramework
的候选构造函数有std::wstring&
作为第一个和第二个参数,但是您传递的是临时变量。例如,如果您传递全局变量,那么它应该可以工作。