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 C2969

syntax error : 'symbol' : expected member function definition to end with '}'

A template member function definition has an unmatched closing brace.

The following sample generates C2969:

class A {
   int   i;
   public:
   A(int i) { 
   }
};

A anA(1);

class B {
   A a;
   B() : a(anA);   // C2969
   /*
   // try ...
   B() : a(anA) {
      // ...
   }
   */
};