Remove concept of FIRST_CONCRETE_* operand types
diff --git a/source/binary.cpp b/source/binary.cpp
index 24a2b92..d6d28b6 100644
--- a/source/binary.cpp
+++ b/source/binary.cpp
@@ -678,8 +678,7 @@
return diagnostic() << "Internal error: Unhandled operand type: " << type;
}
- assert(int(SPV_OPERAND_TYPE_FIRST_CONCRETE_TYPE) <= int(parsed_operand.type));
- assert(int(SPV_OPERAND_TYPE_LAST_CONCRETE_TYPE) >= int(parsed_operand.type));
+ assert(spvOperandIsConcrete(parsed_operand.type));
operands->push_back(parsed_operand);