mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
fix warning.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22535 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
57d2f9c0ad
commit
0ea17620dc
@ -112,7 +112,7 @@ private:
|
|||||||
///
|
///
|
||||||
inline bool rowIsValid(int const i) const
|
inline bool rowIsValid(int const i) const
|
||||||
{
|
{
|
||||||
return i >= 0 && i <= userData_.size();
|
return i >= 0 && i <= int(userData_.size());
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user