fixed warning

pull/577/head
Peter LaValle 2015-05-31 12:56:17 +01:00
parent a00101cc02
commit 99e45b995b
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ void Value::setBool( bool value ) {
bool Value::getBool() {
assert( ddl_bool == m_type );
return ( bool ) ( *m_data );
return ( *m_data ) ? true : false;
}
void Value::setInt8( int8 value ) {