Took a while to track down what really caused the crash by copying in blocks of lines from notepad until it seemed to crash with the last line of the following:
scal being:PHP Code:class v2x: public scal{public:inline v2x(int p):scal(p){};inline v2x(){};}v2x_;
class rectx1: public rectx1{public:inline v2x(int p):scal(p){};inline v2x(){};}rectx1_;
The original scal is much larger but i cut it down. The code is of course faulty, you don't really inherit a class from itself, somehow both lines are needed and the constructor is also yet unrenamed, however renaming it will cause a delayed crash, so i let it be. Here's the correct version:PHP Code:class scal{
protected:
int s;
public:
inline scal(){};
inline scal(const int a):s(a){};
inline operator int(){return s;};
};
Have fun crashing msvc6 but save your project firstPHP Code:class v2x: public scal{public:inline v2x(int p):scal(p){};inline v2x(){};}v2x_;
class rectx1: public scal{public:inline rectx1(int p):scal(p){};inline v2x(){};}rectx1_;
![]()





Reply With Quote