compiler warning fixed

This commit is contained in:
Uwe Rathmann 2022-05-02 16:26:13 +02:00
parent 13ff41722c
commit 28d9b7385f

View File

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