pcu: Fix warning: control reaches end of non-void function

Change-Id: I2c8b343fba5fabda9f78af8711e2a837536518e9
This commit is contained in:
Pau Espin Pedrol 2021-02-05 16:00:05 +01:00
parent 3855462672
commit fceeec27ce
1 changed files with 4 additions and 2 deletions

View File

@ -14,6 +14,7 @@ module GPRS_TBF {
import from GSM_Types all;
import from Osmocom_Types all;
import from General_Types all;
import from Misc_Helpers all;
import from RLCMAC_CSN1_Types all;
import from RLCMAC_Types all;
import from RLCMAC_Templates all;
@ -409,8 +410,9 @@ function f_dl_tbf_mod_sns(DlTbfState ds, integer val) return integer
}
function f_dl_tbf_is_in_window(integer bsn) return boolean {
setverdict(fail, "pleaes implement me");
mtc.stop;
Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
"please implement me");
return false;
}
function f_dl_tbf_is_received(inout DlTbfState ds, integer bsn) return boolean {