i have the following test class in a .h file:
class felineURL
{
public:
felineURL();
public:
felineURL &operator++() { m_counter++; return *this; }
felineURL &operator--() { m_counter--; return *this; }
void SetSkipWSP(bool b) { if(b == true) this->operator++(); else this->operator--(); }
void SetSkipWSP(long n) { if(n > 200) this->operator++(); else this->operator--(); }
void SetSkipWSP(char c) { if(c == 'y' || c == 'Y') this->operator++(); else this->operator--(); }
public:
long m_counter;
};
and still no sign of any problems. are you able to copy this to a temporary file, and produce a small code block that reproduces the problem? any clues on what i need to do to reproduce this would be useful