Jelajahi Sumber

Merge pull request #575 from Dmitry-Me/extractDuplicatedString

Extract duplicated text string
Lee Thomason 8 tahun lalu
induk
melakukan
c1f1de724f
1 mengubah file dengan 3 tambahan dan 2 penghapusan
  1. 3 2
      xmltest.cpp

+ 3 - 2
xmltest.cpp

@@ -1615,13 +1615,14 @@ int main( int argc, const char ** argv )
         // If it doesn't assert, it passes. Caused by objects
         // If it doesn't assert, it passes. Caused by objects
         // getting created during parsing which are then
         // getting created during parsing which are then
         // inaccessible in the memory pools.
         // inaccessible in the memory pools.
+        const char* xmlText = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>";
         {
         {
             XMLDocument doc;
             XMLDocument doc;
-            doc.Parse("<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>");
+            doc.Parse(xmlText);
         }
         }
         {
         {
             XMLDocument doc;
             XMLDocument doc;
-            doc.Parse("<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>");
+            doc.Parse(xmlText);
             doc.Clear();
             doc.Clear();
         }
         }
     }
     }