diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-04-21 21:07:58 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-04-21 21:07:58 -0700 |
commit | a6cc636a6b0d531686311b5666ea77225b10903e (patch) | |
tree | 9c030c384f835ecddf70cdd2d4d2cbb02e60dd25 /tests/test_xpath_api.cpp | |
parent | 250d020e9b121f537bbcbf8439033ba4a6f225ef (diff) |
tests: Fix MSVC warnings
Diffstat (limited to 'tests/test_xpath_api.cpp')
-rw-r--r-- | tests/test_xpath_api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |