class STG_STOPPER
{
public:
- STG_STOPPER() { nonstop = true; }
- bool GetStatus() const { return nonstop; };
+ STG_STOPPER() : nonstop(true) {}
+ bool GetStatus() const { return nonstop; }
#ifdef NO_DAEMON
void Stop(const char * __file__, int __line__)
#else