- added support for reporting SGPropertyNode::NONE type
This commit is contained in:
parent
f725b12de5
commit
4678a4db66
1 changed files with 2 additions and 0 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue