/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to create/expat-cslxml-dom.cpp

  • Committer: Suren A. Chilingaryan
  • Date: 2009-09-23 17:13:04 UTC
  • Revision ID: csa@dside.dyndns.org-20090923171304-osvtr4zqb29h11kd
Intel, Tango, Phobos, and RapidXML parsers; Memory benchmark scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
        node1->appendChild(doc->createTextNode(s));
125
125
    }
126
126
 
127
 
    writer->writeNode(&os,doc);
128
 
//    if (iter==td->iterations) cout<<os.str();
 
127
    if (!td->memory_bench) {
 
128
        writer->writeNode(&os,doc);
 
129
//      if (iter==td->iterations) cout<<os.str();
 
130
    }
 
131
    
129
132
    doc->release();
130
133
}
131
134