core: remove noexcept on destructor

It is the default on C++11
This commit is contained in:
Gregory Hainaut 2017-05-06 17:09:48 +02:00
parent 47264dc350
commit 33fb806f13
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ protected:
void ExecuteTaskInThread(); void ExecuteTaskInThread();
public: public:
LinuxPipeThread(FILE* stdstream); LinuxPipeThread(FILE* stdstream);
virtual ~LinuxPipeThread() noexcept; virtual ~LinuxPipeThread();
}; };
LinuxPipeThread::LinuxPipeThread(FILE* stdstream) LinuxPipeThread::LinuxPipeThread(FILE* stdstream)
@ -69,7 +69,7 @@ LinuxPipeThread::LinuxPipeThread(FILE* stdstream)
} }
} }
LinuxPipeThread::~LinuxPipeThread() noexcept LinuxPipeThread::~LinuxPipeThread()
{ {
// Close write end of the pipe first so the redirection thread starts // Close write end of the pipe first so the redirection thread starts
// finishing up and restore the original stdout/stderr file descriptor so // finishing up and restore the original stdout/stderr file descriptor so