From 225f222c9fba7a831e2e5f80ccbba34ed2bca532 Mon Sep 17 00:00:00 2001 From: Giel van Schijndel Date: Fri, 24 Jun 2011 20:47:26 +0200 Subject: [PATCH] fix warning: X enumeration values not handled in switch [-Wswitch-enum] Add default cases to opcode switches to assert that they should never occur. Signed-off-by: Giel van Schijndel --- src/script.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/script.cpp b/src/script.cpp index aa7f1f511..654aaa10e 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -580,6 +580,7 @@ bool EvalScript(vector >& stack, const CScript& script, co case OP_ABS: if (bn < bnZero) bn = -bn; break; case OP_NOT: bn = (bn == bnZero); break; case OP_0NOTEQUAL: bn = (bn != bnZero); break; + default: assert(!"invalid opcode"); break; } popstack(stack); stack.push_back(bn.getvch()); @@ -659,6 +660,7 @@ bool EvalScript(vector >& stack, const CScript& script, co case OP_GREATERTHANOREQUAL: bn = (bn1 >= bn2); break; case OP_MIN: bn = (bn1 < bn2 ? bn1 : bn2); break; case OP_MAX: bn = (bn1 > bn2 ? bn1 : bn2); break; + default: assert(!"invalid opcode"); break; } popstack(stack); popstack(stack);