]> git.mxchange.org Git - simgear.git/commitdiff
hla: Do not introduce an empty enumerated data type.
authorMathias Froehlich <Mathias.Froehlich@web.de>
Sat, 18 Feb 2012 12:20:25 +0000 (13:20 +0100)
committerMathias Froehlich <Mathias.Froehlich@web.de>
Sat, 18 Feb 2012 12:20:25 +0000 (13:20 +0100)
This fixes a bogous enumerated data type that is
up to now introduced into the data type map.

simgear/hla/HLAOMTXmlVisitor.cxx

index e573f2441ee2f4661ba8867d35bdc51988638c6f..89784b1c25e0de89714e65ab769802aeaf6a037f 100644 (file)
@@ -729,11 +729,6 @@ HLAOMTXmlVisitor::startElement(const char* name, const XMLAttributes& atts)
             throw sg_exception("enumeratedDataTypes tag outside dataTypes!");
         pushMode(EnumeratedDataTypesMode);
 
-        Enumerator enumerator;
-        enumerator._name = getAttribute("name", atts);
-        enumerator._values = getAttribute("values", atts);
-        _enumeratedDataMap[_enumeratedDataName]._enumeratorList.push_back(enumerator);
-
     } else if (strcmp(name, "arrayData") == 0) {
         if (getCurrentMode() != ArrayDataTypesMode)
             throw sg_exception("arrayData tag outside arrayDataTypes!");