Changeset 10929
- Timestamp:
- 01/07/10 20:08:53 (3 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osgDB/XmlParser.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgDB/XmlParser.cpp
r10928 r10929 296 296 } 297 297 298 if ((c=input[0])>=0 && c=='>' || c=='/')298 if ((c=input[0])>=0 && (c=='>' || c=='/')) 299 299 { 300 300 ++input; … … 310 310 } 311 311 else 312 osg::notify(osg::NOTICE)<<"Error: endtag is not closed correctly"<<std::endl;312 osg::notify(osg::NOTICE)<<"Error: tag is not closed correctly"<<std::endl; 313 313 } 314 314 else … … 402 402 } 403 403 404 if (children.empty() )404 if (children.empty() && contents.empty()) 405 405 { 406 406 fout<<" />"<<std::endl;
