This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Compiler Error C2546
'operator' : illegal mix of 'void' pointer with pointer to type
The operator is called with incompatible pointer types.
Possible cause
- Arithmetic operator used on a void pointer. Pointer arithmetic requires pointers to objects. If you must use the operator with a void pointer, you must overload the operator or cast the void pointer to a type accepted by the operator.