Commit ec830d70 authored by Bi-Ruei, Chiu's avatar Bi-Ruei, Chiu

Fix reference comes from another module

In ASN.1 of 38.331 rev 15.2.1, module NR-InterNodeDefinitions
imports GapConfig from NR-RRC-Definition module. It should treat

  SetupRelease { GapConfig }

in module NR-InterNodeDefinitions the same as the one in
module NR-RRC-Definition.
parent 054f06c2
...@@ -147,8 +147,6 @@ int ...@@ -147,8 +147,6 @@ int
asn1p_ref_compare(const asn1p_ref_t *a, const asn1p_ref_t *b) { asn1p_ref_compare(const asn1p_ref_t *a, const asn1p_ref_t *b) {
if(a->comp_count != b->comp_count) if(a->comp_count != b->comp_count)
return -1; return -1;
if(a->module != b->module)
return -1;
for(size_t i = 0; i < a->comp_count; i++) { for(size_t i = 0; i < a->comp_count; i++) {
if(a->components[i].lex_type != b->components[i].lex_type if(a->components[i].lex_type != b->components[i].lex_type
......
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