removes force casting from int to bool

This commit is contained in:
Peter Thorson
2013-02-17 07:13:09 -06:00
parent e4f6aafb04
commit 78b52be803

View File

@@ -176,7 +176,7 @@ private:
typedef typename concurrency::mutex_type mutex_type;
bool dynamic_test(level channel) {
return channel & m_dynamic_channels;
return ((channel & m_dynamic_channels) != 0);
}
const char* get_timestamp() {