2009-02-13 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Added missing call to arrayWrapperConst
	* test/array_funTest.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2009-02-12 15:39:07 +00:00
parent 83caf2903b
commit 9ce0e78780
2 changed files with 7 additions and 0 deletions

View file

@ -127,6 +127,8 @@ void array_funTest::testArrayWrapper()
array_wrapper<int, 10> a2 = a1;
CPPUNIT_ASSERT_EQUAL(9, a2[9]);
arrayWrapperConst(a2);
array_wrapper<struct X, 10> x1;
arrayPtrCast(x1);
arrayPtrConstCast(x1);