mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 02:09:22 +00:00
fix cast issue
This commit is contained in:
parent
69d52b3e7e
commit
7fcc7847f0
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ EventsDb::EventsDb () : AbstractDb(*new EventsDbPrivate) {}
|
|||
isNull = false;
|
||||
|
||||
try {
|
||||
return message.get<T>(index);
|
||||
return message.get<T>((size_t)index);
|
||||
} catch (const exception &) {
|
||||
isNull = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue