Try to make Travis happy

This commit is contained in:
Daniel Marjamäki 2020-06-13 07:45:31 +02:00
parent 258d0a6ade
commit 6600453b44
1 changed files with 3 additions and 0 deletions

View File

@ -2980,6 +2980,9 @@ static bool isLifetimeBorrowed(const ValueType *vt, const ValueType *vtParent)
return true;
if (vtParent->str() == vt->str())
return true;
if (vtParent->pointer == vt->pointer && vtParent->type == vt->type && vtParent->isIntegral())
// sign conversion
return true;
}
return false;