compiler warning fixed

This commit is contained in:
Uwe Rathmann 2022-05-02 16:26:13 +02:00
parent 7889f53a02
commit 38fdc102de
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class Box : public TestBox
int count() const
{
return m_tests.size();
return static_cast< int >( m_tests.size() );
}
private: