You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an interface is defined as following:
[Constructor(long val)]
interface MyClass {
attribute readonly long value;
};
will compile fail, the message is :no matching function for call to ‘MyClass::MyClass()’
The generated Nan wrapper code calls new MyClass() but the implementation doesn't have the definition.
If an interface is defined as following:
[Constructor(long val)]
interface MyClass {
attribute readonly long value;
};
will compile fail, the message is :no matching function for call to ‘MyClass::MyClass()’
The generated Nan wrapper code calls new MyClass() but the implementation doesn't have the definition.