]> git.llucax.com Git - software/druntime.git/blobdiff - src/compiler/dmd/util/utf.d
Add .gitignore files
[software/druntime.git] / src / compiler / dmd / util / utf.d
index 50d4a51972eed92dda777cd47d1758b18630cb7c..552ab344a574407584054e834502a9efb0786ab9 100644 (file)
@@ -334,7 +334,7 @@ unittest
     assert(i == 3);
 
     static s4 =
-    [  "\xE2\x89"c,            // too short
+    [  "\xE2\x89"c[],          // too short
        "\xC0\x8A",
        "\xE0\x80\x8A",
        "\xF0\x80\x80\x8A",
@@ -586,7 +586,7 @@ Checks to see if string is well formed or not. $(D S) can be an array
  */
 void validate(S)(in S s)
 {
-    invariant len = s.length;
+    auto len = s.length;
     for (size_t i = 0; i < len; )
     {
        decode(s, i);
@@ -863,7 +863,7 @@ unittest
 {
     debug(utf) printf("utf.toUTF.unittest\n");
 
-    auto c = "hello"c;
+    auto c = "hello"c[];
     auto w = toUTF16(c);
     assert(w == "hello");
     auto d = toUTF32(c);