From 432f504d3822b75397a9be36f58772ab11d6688d Mon Sep 17 00:00:00 2001
From: Lev Walkin <vlm@lionet.info>
Date: Mon, 14 Feb 2005 20:29:54 +0000
Subject: [PATCH] SET OF XER support

---
 libasn1compiler/asn1c_C.c | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/libasn1compiler/asn1c_C.c b/libasn1compiler/asn1c_C.c
index 510de17a..4566d133 100644
--- a/libasn1compiler/asn1c_C.c
+++ b/libasn1compiler/asn1c_C.c
@@ -1514,14 +1514,7 @@ emit_type_DEF(arg_t *arg, asn1p_expr_t *expr, enum tvm_compat tv_mode, int tags_
 		OUT("%s_constraint,\n", p);
 		OUT("%s_decode_ber,\n", p);
 		OUT("%s_encode_der,\n", p);
-		switch(expr->expr_type) {
-		case ASN_CONSTR_SET_OF:
-		case ASN_CONSTR_SEQUENCE_OF:
-			OUT("0,\t\t\t\t/* Not implemented yet */\n");
-			break;
-		default:
-			OUT("%s_decode_xer,\n", p);
-		}
+		OUT("%s_decode_xer,\n", p);
 		OUT("%s_encode_xer,\n", p);
 
 		if(expr->expr_type == ASN_CONSTR_CHOICE) {
-- 
GitLab