wait_tree: Silence warning about all code paths not returning a value

If code execution hits this spot, something has gone very wrong, so mark
the path as unreachable. This silences a warning on MSVC.
This commit is contained in:
Lioncash 2018-07-24 04:06:33 -04:00 committed by zhupengfei
parent 4a3c4f5f67
commit bf5b5d25ed
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include "citra_qt/debugger/wait_tree.h"
#include "citra_qt/util/util.h"
#include "common/assert.h"
#include "core/hle/kernel/event.h"
#include "core/hle/kernel/mutex.h"
#include "core/hle/kernel/semaphore.h"
@ -117,6 +118,8 @@ QString WaitTreeWaitObject::GetResetTypeQString(Kernel::ResetType reset_type) {
case Kernel::ResetType::Pulse:
return tr("pulse");
}
UNREACHABLE();
return {};
}
WaitTreeObjectList::WaitTreeObjectList(