fixed warning
parent
a00101cc02
commit
99e45b995b
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in New Issue