Re: FixedSizeArray

Hi Petr,

I actually meant that the static function could be called with an object too:

CPPUNIT_ASSERT (array.arraySize() == 11);

Regards,

Peter

Would you like to post a relpy?


This post is a reply to:
Hi Petr, 70 Q_ASSERT (static_cast (byteArray.size()) == Size); 71 // This should never happen at (more...)

Follow-ups:
Re: FixedSizeArray
Hi Peter, Why two functions when CPPUNIT_ASSERT (array.size() == 11); works? The compiler will always be able to determine the object type and will know how to call the function. I could be (more...)