From be1085cb883f9cfb332a5266cf407e608df783e4 Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Tue, 20 Jun 2017 09:26:06 -0600 Subject: [PATCH] Build: add switch default to make compilers happy --- glslang/Include/Types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glslang/Include/Types.h b/glslang/Include/Types.h index faefd477..81268dfe 100644 --- a/glslang/Include/Types.h +++ b/glslang/Include/Types.h @@ -1352,6 +1352,8 @@ public: case EbtBool: case EbtAtomicUint: return true; + default: + break; } return false; }