summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2017-08-22 16:09:09 +0200
committerGitHub <noreply@github.com>2017-08-22 16:09:09 +0200
commita8675f42875d7ad41ef64b89ec478834042355dd (patch)
tree8e2c67c072ad8d874d1b5685a8d084719acb90af /src/core/hle/kernel
parentMerge pull request #2894 from wwylele/motion-emu-fix (diff)
parentGPU/Warnings: Explicitly cast the screen refresh ticks to u64. (diff)
downloadyuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar
yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.gz
yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.bz2
yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.lz
yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.xz
yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.tar.zst
yuzu-a8675f42875d7ad41ef64b89ec478834042355dd.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/kernel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 9cf288b08..142bb84b2 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -8,6 +8,7 @@
#include <string>
#include <utility>
#include <boost/smart_ptr/intrusive_ptr.hpp>
+#include "common/assert.h"
#include "common/common_types.h"
namespace Kernel {
@@ -84,6 +85,8 @@ public:
case HandleType::ClientSession:
return false;
}
+
+ UNREACHABLE();
}
public: