Packages icon indicating copy to clipboard operation
Packages copied to clipboard

[C++] Templated class method recognized as function

Open wbond opened this issue 7 years ago • 0 comments

From #1356, originally reported by @anticultist

// function is recognized as a golobal function not a class function
template <class ACLASS>
HRESULT A<ACLASS>::c()
{
    return S_OK;
}

wbond avatar Nov 28 '18 21:11 wbond