Commit 08839e31 authored by Senthil Prabakaran's avatar Senthil Prabakaran Committed by Mouse

Update A1C_GEN_JER

parent b04e21e0
...@@ -1499,6 +1499,9 @@ asn1c_lang_C_type_SIMPLE_TYPE(arg_t *arg) { ...@@ -1499,6 +1499,9 @@ asn1c_lang_C_type_SIMPLE_TYPE(arg_t *arg) {
if(arg->flags & A1C_GEN_XER) { if(arg->flags & A1C_GEN_XER) {
OUT("xer_type_decoder_f %s_decode_xer;\n", p); OUT("xer_type_decoder_f %s_decode_xer;\n", p);
OUT("xer_type_encoder_f %s_encode_xer;\n", p); OUT("xer_type_encoder_f %s_encode_xer;\n", p);
}
if(arg->flags & A1C_GEN_JER) {
OUT("xer_type_encoder_f %s_encode_xer;\n", p);
} }
if(arg->flags & A1C_GEN_OER) { if(arg->flags & A1C_GEN_OER) {
OUT("oer_type_decoder_f %s_decode_oer;\n", p); OUT("oer_type_decoder_f %s_decode_oer;\n", p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment