]> granicus.if.org Git - icu/commitdiff
fix warnings of comparing raw 16 bit string pointers
authorYounies <younies.mahmoud@gmail.com>
Fri, 17 Jan 2020 14:11:19 +0000 (15:11 +0100)
committerYounies <younies.mahmoud@gmail.com>
Fri, 17 Jan 2020 14:11:19 +0000 (15:11 +0100)
icu4c/source/test/intltest/unitstest.cpp

index 0adf5c7dc52f2da2b6ae2c44689da94b3b3d82bf..05a02f73cbf55c7c54d30b8d4d43600710aea886 100644 (file)
@@ -5,9 +5,9 @@
 
 #if !UCONFIG_NO_FORMATTING
 
-#include <vector>
 
 #include "intltest.h"
+#include "unicode/unistr.h"
 
 class UnitsTest : public IntlTest {
   public:
@@ -38,11 +38,11 @@ void UnitsTest::runIndexedTest(int32_t index, UBool exec, const char *&name, cha
 }
 
 // Just for testing quick conversion ability.
-double testConvert(const char16_t *source, const char16_t *target, double input) {
+double testConvert(UnicodeString source, UnicodeString target, double input) {
     if (source == u"meter" && target == u"foot" && input == 1.0)
         return 3.28084;
 
-    if (source == u"kilometer" && target == u"foot" && input == 1.0)
+    if ( source == u"kilometer" && target == u"foot" && input == 1.0)
         return 328.084;
 
     return -1;