Compiler Error C3740
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3740.
templates cannot source or receive events
A templated class or struct cannot contain events.
The following sample generates C3740:
// C3740.cpp
template <typename T> // Delete the template specification
struct E {
__event void f(); // C3740
};
int main() {
}
Show: