View Single Post
  #13  
Old 08-25-2004, 05:54 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Quote:
Originally Posted by RangerDown
After I press Ctrl C to end the logging program it crashes with an option to send error report. The logfile is intact though. Is it normal for it to crash when it ends? (Using WinXP btw)
CTRL+C is the hotkey to close a DOS Application. (In DOS Alone, it would return to the cd> prompt, differing from an 'exit' or 'quit' command.) So yes I wouldn't be suprised if it would get a crash message.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
Reply With Quote