◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Compiler error C2352 'class::function' : illegal call of non-static member function The specified nonstatic member function was called in a static member function. The following is an example of this error: class X { public: static void func1(); void func2(); static void func3() { func1(); // error, calls static func1 func2(); // OK, calls nonstatic func2 } }; -♦-