Build: add switch default to make compilers happy

This commit is contained in:
John Kessenich 2017-06-20 09:26:06 -06:00
parent fba125a988
commit be1085cb88

View File

@ -1352,6 +1352,8 @@ public:
case EbtBool: case EbtBool:
case EbtAtomicUint: case EbtAtomicUint:
return true; return true;
default:
break;
} }
return false; return false;
} }