Commit 5d60cc01806bd2186165002931aba06816a693d1
- Diff rendering mode:
- inline
- side by side
etc/ChangeLog-5.1
(4 / 0)
|   | |||
| 1 | 2007-09-27 Petr Ovtchenkov <complement@users.sourceforge.net> | ||
| 2 | |||
| 3 | * test/unit/find_test.cpp: array initialization missed. | ||
| 4 | |||
| 1 | 5 | 2007-09-17 Francois Dumont <dums@users.sourceforge.net> | |
| 2 | 6 | ||
| 3 | 7 | * stlport/stl/_num_get.h: Add _STLP_DECLSPEC specification to |
test/unit/find_test.cpp
(1 / 1)
|   | |||
| 87 | 87 | } | |
| 88 | 88 | ||
| 89 | 89 | { | |
| 90 | Key keys[10]; | ||
| 90 | Key keys[10] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; | ||
| 91 | 91 | Key const* k = find(keys + 0, keys + 10, 5); | |
| 92 | 92 | CPPUNIT_ASSERT( k == keys + 10 ); | |
| 93 | 93 | } |

