diff options
author | bloodstalker <thabogre@gmail.com> | 2017-01-31 14:07:29 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-01-31 14:07:29 +0000 |
commit | b2750a3f9c0011d5357d24005ae15d0f78fd456a (patch) | |
tree | 5fb72585305fc91a351ddf19b85e7b2663d42464 /mutator_aux.cpp | |
parent | removed extra tabs and whitespaces. (diff) | |
download | mutator-b2750a3f9c0011d5357d24005ae15d0f78fd456a.tar.gz mutator-b2750a3f9c0011d5357d24005ae15d0f78fd456a.zip |
added the namespace attibute to the xml report
Diffstat (limited to 'mutator_aux.cpp')
-rw-r--r-- | mutator_aux.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mutator_aux.cpp b/mutator_aux.cpp index 6599def..1dab807 100644 --- a/mutator_aux.cpp +++ b/mutator_aux.cpp @@ -162,7 +162,10 @@ bool IsTheMatchInMainFile(bool MainFileFlag, bool MainFile) /******************************************************XMLReport******************************************************/ XMLReport::XMLReport() { - RootPointer = XMLReportDoc.NewElement("Report"); + RootPointer = XMLReportDoc.NewElement("mutator:Report"); +#if 1 + RootPointer->SetAttribute("xmlns:mutator", "http://www.w3.org/2001/XMLSchema"); +#endif } void XMLReport::XMLCreateReport() |