Changeset 1031
- Timestamp:
- 01/23/17 10:38:55 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/trunk/src/xml_parser.cpp
r509 r1031 70 70 CContext::setCurrent(attributes["id"]) ; 71 71 72 bool hasctxt = CContext::has(attributes["id"]);73 74 if(hasctxt)75 {76 DEBUG("The context will not be processed because it exist an other context with the same id" );77 continue;78 }79 72 80 73 if (isParseAll) 81 74 { 82 75 CContext* context = CContext::create(attributes["id"]); 83 // if (!hasctxt) group_context->addChild(context);84 76 context->parse(node); 85 77 … … 92 84 { 93 85 CContext* context = CContext::create(*it); 94 // if (!hasctxt) group_context->addChild(context);95 86 context->parse(node); 96 87
Note: See TracChangeset
for help on using the changeset viewer.