From a6cc636a6b0d531686311b5666ea77225b10903e Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Tue, 21 Apr 2015 21:07:58 -0700 Subject: tests: Fix MSVC warnings --- tests/test_xpath_api.cpp | 2 +- tests/test_xpath_variables.cpp | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'tests') diff --git a/tests/test_xpath_api.cpp b/tests/test_xpath_api.cpp index c070ed0..295bd95 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' + i; + expr[0] = '0' + char_t(i); expr[1] = 0; qv.push_back(xpath_query(expr)); diff --git a/tests/test_xpath_variables.cpp b/tests/test_xpath_variables.cpp index 1fe0b6e..f72d6ff 100644 --- a/tests/test_xpath_variables.cpp +++ b/tests/test_xpath_variables.cpp @@ -527,8 +527,8 @@ TEST(xpath_variables_copy_big) { char_t name[4]; name[0] = 'a'; - name[1] = '0' + (i / 10); - name[2] = '0' + (i % 10); + name[1] = '0' + char_t(i / 10); + name[2] = '0' + char_t(i % 10); name[3] = 0; set.set(name, double(i)); @@ -540,8 +540,8 @@ TEST(xpath_variables_copy_big) { char_t name[4]; name[0] = 'a'; - name[1] = '0' + (i / 10); - name[2] = '0' + (i % 10); + name[1] = '0' + char_t(i / 10); + name[2] = '0' + char_t(i % 10); name[3] = 0; CHECK(copy.get(name) && copy.get(name)->get_number() == i); @@ -556,8 +556,8 @@ TEST(xpath_variables_copy_big_out_of_memory) { char_t name[4]; name[0] = 'a'; - name[1] = '0' + (i / 10); - name[2] = '0' + (i % 10); + name[1] = '0' + char_t(i / 10); + name[2] = '0' + char_t(i % 10); name[3] = 0; set.set(name, double(i)); @@ -572,8 +572,8 @@ TEST(xpath_variables_copy_big_out_of_memory) { char_t name[4]; name[0] = 'a'; - name[1] = '0' + (i / 10); - name[2] = '0' + (i % 10); + name[1] = '0' + char_t(i / 10); + name[2] = '0' + char_t(i % 10); name[3] = 0; CHECK(!copy.get(name)); -- cgit v1.2.3