1
0
Fork 0

- added support for reporting SGPropertyNode::NONE type

This commit is contained in:
curt 2001-07-27 22:00:48 +00:00
parent f725b12de5
commit 4678a4db66

View file

@ -82,6 +82,8 @@ static string getValueTypeString( const SGPropertyNode *node ) {
SGPropertyNode::Type type = node->getType();
if ( type == SGPropertyNode::UNSPECIFIED ) {
result = "unspecified";
} else if ( type == SGPropertyNode::NONE ) {
result = "none";
} else if ( type == SGPropertyNode::BOOL ) {
result = "bool";
} else if ( type == SGPropertyNode::INT ) {