From cff35dfa31cc1030e86d7f5d045d709b2fdd4506 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sun, 3 May 2015 17:55:46 -0700 Subject: tests: Fix MSVC6 compatibility Apply the usual workaround for for scoping issues. Also fix integer conversion warning for BorlandC. --- tests/test_xpath_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_xpath_api.cpp') diff --git a/tests/test_xpath_api.cpp b/tests/test_xpath_api.cpp index 295bd95..bca22de 100644 --- a/tests/test_xpath_api.cpp +++ b/tests/test_xpath_api.cpp @@ -614,7 +614,7 @@ TEST(xpath_api_query_vector) for (int i = 0; i < 10; ++i) { char_t expr[2]; - expr[0] = '0' + char_t(i); + expr[0] = char_t('0' + i); expr[1] = 0; qv.push_back(xpath_query(expr)); -- cgit v1.2.3