mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Inspection: Functional-style cast is used instead of a C++ cast
This commit is contained in:
parent
98175168f3
commit
c907d8b273
@ -53,7 +53,7 @@ public:
|
||||
|
||||
FLAC::Picture pic(ByteVector(pdata, 199));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(3, int(pic.type()));
|
||||
CPPUNIT_ASSERT_EQUAL(3, static_cast<int>(pic.type()));
|
||||
CPPUNIT_ASSERT_EQUAL(1, pic.width());
|
||||
CPPUNIT_ASSERT_EQUAL(1, pic.height());
|
||||
CPPUNIT_ASSERT_EQUAL(24, pic.colorDepth());
|
||||
|
Loading…
Reference in New Issue
Block a user