Commit 5d60cc01806bd2186165002931aba06816a693d1

  • avatar
  • complement <complement @01b27279-081b-0410…d9d9e0fb0389.>
  • Thu Sep 27 11:30:27 CEST 2007
array initialization missed

git-svn-id: https://stlport.svn.sourceforge.net/svnroot/stlport/branches/STLPORT_5_1/STLport@3201 01b27279-081b-0410-8cf9-d9d9e0fb0389
  
12007-09-27 Petr Ovtchenkov <complement@users.sourceforge.net>
2
3 * test/unit/find_test.cpp: array initialization missed.
4
152007-09-17 Francois Dumont <dums@users.sourceforge.net>
26
37 * stlport/stl/_num_get.h: Add _STLP_DECLSPEC specification to
  
8787 }
8888
8989 {
90 Key keys[10];
90 Key keys[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
9191 Key const* k = find(keys + 0, keys + 10, 5);
9292 CPPUNIT_ASSERT( k == keys + 10 );
9393 }