From 9c0bddf293d3a72ff23c7856fd6d2d4d21590148 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 8 Dec 2017 13:58:08 +0100 Subject: [PATCH] General_Types: Make it work with TITAN 6.3.0 Somehow the TITAN 6.3.0 compiler is stricter... --- library/General_Types.ttcn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/General_Types.ttcn b/library/General_Types.ttcn index bdf858537..37b9c7097 100644 --- a/library/General_Types.ttcn +++ b/library/General_Types.ttcn @@ -312,10 +312,10 @@ group CompositeTypes { type record of OCT6 OCT6List with { variant "" }; type record of OCT7 OCT7List with { variant "" }; - type record of Dummy_comptype ListOfDummy_comptype with { variant "" }; - type record of Dummy_CT ListOfDummy_CT with { variant "" }; + type record of Dummy_comptype ListOfDummy_comptype; + type record of Dummy_CT ListOfDummy_CT; type record of Protocols ProtocolList with { variant "" }; } // end group CompositeTypes -} with { encode "JSON" } /* End of module General_Types */ +} with { encode "RAW" } /* End of module General_Types */