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();
|
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
|
||||||
|
|
Loading…
Reference in New Issue