From c934642bdb7e6747a20054d7cc7b079e69bc22c2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 18 Mar 2010 15:09:24 +0000 Subject: COMMON: Move typedef StringList from str.h to new header str-array.h This removes the dependency on array.h from str.h. Also, begun migration from the confusing type name "StringList" to the more appropriate StringArray. svn-id: r48282 --- test/common/array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/common/array.h b/test/common/array.h index 5ab6b73ef1..c85e056b19 100644 --- a/test/common/array.h +++ b/test/common/array.h @@ -196,7 +196,7 @@ class ArrayTestSuite : public CxxTest::TestSuite void test_array_constructor_str() { const char *array1[] = { "a", "b", "c" }; - Common::StringList array2(array1, 3); + Common::Array array2(array1, 3); TS_ASSERT_EQUALS(array2[0], "a"); TS_ASSERT_EQUALS(array2[1], "b"); -- cgit v1.2.3