mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
removes force casting from int to bool
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user