aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/ranap/RANAP_JoinedMBMSBearerService-IEs.h
AgeCommit message (Collapse)AuthorFilesLines
2022-11-14asn1: fix visibility warnings from generated codeOliver Smith1-16/+2
Fix warnings from generated asn1 code in order to build osmo-iuh with werror in a future patch: ../../include/osmocom/hnbap/HNBAP_CriticalityDiagnostics-IE-List.h:29:23: error: ‘struct HNBAP_CriticalityDiagnostics_IE_List__Member’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror] These visibility warnings come from "SEQUENCE … OF SEQUENCE" definitions in the asn1 source files, as described in detail here: https://github.com/vlm/asn1c/issues/430 It is not possible to tell gcc to just ignore these warnings since they don't have their own type (unlike e.g. -Wuninitialized). Also it seems like a huge effort to patch this in asn1c. So work around the problem the same way the author of the issue worked around it by rewriting the lines to "SEQUENCE … OF …-Value" and adding a "…-Value ::= SEQUENCE" line below. Add a script in asn1/utils/asn1_restructure_sequence_of_sequence.py for the transformation and apply it. Related: OS#4462 Change-Id: If84445ed2e0df604b581684dcf83f8520b7da84c
2021-10-27ranap: Use asn1c flag -fcompound-names to avoid name collisions with other libsPau Espin Pedrol1-2/+2
Change-Id: Iba106dcc18e3d429b4b9808610a44ac29b798172
2021-10-26Update generated .c/.h after using asn1c -R paramPau Espin Pedrol1-0/+1
Change-Id: Ib7a03973d43828f47ff59b561d9ddce43186f8af
2016-01-05Remove osmo-iuh subdir level from include/ (2/2)Neels Hofmeyr1-3/+3
Make all changes to #include statements and build files.
2016-01-05Remove osmo-iuh subdir level from include/ (1/2)Neels Hofmeyr1-0/+52
First just move the files to make the upcoming commit diff easier to read.