library/IPA_Emulation: cosmetic: fix template restrictions

Change-Id: I375d1b50491ff0c848088277a86dc061be0a943b
This commit is contained in:
Vadim Yanitskiy 2020-05-25 21:23:46 +07:00
parent 44f0c48a3e
commit 6b4856dd17
1 changed files with 3 additions and 3 deletions

View File

@ -110,12 +110,12 @@ type record ASP_RSL_Unitdata {
RSL_Message rsl
};
template ASP_RSL_Unitdata ts_ASP_RSL_UD(IpaStreamId sid, template RSL_Message rsl) := {
template (value) ASP_RSL_Unitdata ts_ASP_RSL_UD(IpaStreamId sid, template (value) RSL_Message rsl) := {
streamId := sid,
rsl := valueof(rsl)
rsl := rsl
}
template ASP_RSL_Unitdata tr_ASP_RSL_UD(IpaStreamId sid, template RSL_Message rsl) := {
template ASP_RSL_Unitdata tr_ASP_RSL_UD(template IpaStreamId sid, template RSL_Message rsl) := {
streamId := sid,
rsl := rsl
}