I am having problems initializing a class with constants:
Why does initialization with a pointer to a member in the same class result in an error? The error occurs without using the "Use" class!
class A { private: int a; const int* const aptr; public: constexpr A( int _a): a(_a) , aptr( &a)
Klaus source share