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 C2634

'&class::member' : pointer to reference member is illegal

A pointer to a reference member is declared.

Example

int mem;
struct S
{
   S() : rf(mem) { }
   int &rf;
};
int (S::*pdm) = &S::rf;  // error