tbf: Make the ms() getter method const

Currently this method cannot be used in other const methods.

This commit adds the missing const keyword.

Sponsored-by: On-Waves ehf
This commit is contained in:
Jacob Erlbeck 2015-06-02 11:37:22 +02:00
parent 1d0a52a349
commit 10ed79553a
1 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ struct gprs_rlcmac_tbf {
struct msgb *create_dl_ass(uint32_t fn);
struct msgb *create_ul_ass(uint32_t fn);
GprsMs *ms();
GprsMs *ms() const;
void set_ms(GprsMs *ms);
uint8_t tsc() const;
@ -284,7 +284,7 @@ inline void gprs_rlcmac_tbf::set_state(enum gprs_rlcmac_tbf_state new_state)
state = new_state;
}
inline GprsMs *gprs_rlcmac_tbf::ms()
inline GprsMs *gprs_rlcmac_tbf::ms() const
{
return m_ms;
}