NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2110

'+' : cannot add two pointers

An attempt was made to add two pointer values using the plus ( + ) operator. The following sample generates C2110:

void main() {
   int a = 0;
   int *pa;
   int *pb;
   a = pa + pb;   // C2110
}