mirror of https://github.com/PCSX2/pcsx2.git
core: remove noexcept on destructor
It is the default on C++11
This commit is contained in:
parent
47264dc350
commit
33fb806f13
|
@ -36,7 +36,7 @@ protected:
|
|||
void ExecuteTaskInThread();
|
||||
public:
|
||||
LinuxPipeThread(FILE* stdstream);
|
||||
virtual ~LinuxPipeThread() noexcept;
|
||||
virtual ~LinuxPipeThread();
|
||||
};
|
||||
|
||||
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
|
||||
// finishing up and restore the original stdout/stderr file descriptor so
|
||||
|
|
Loading…
Reference in New Issue