diff options
Diffstat (limited to 'src/lib/util/options.h')
-rw-r--r-- | src/lib/util/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/options.h b/src/lib/util/options.h index 145ec6ea96f..a05898f46fc 100644 --- a/src/lib/util/options.h +++ b/src/lib/util/options.h @@ -86,7 +86,7 @@ public: uint32_t flags() const { return m_flags; } bool is_header() const { return type() == OPTION_HEADER; } bool is_command() const { return type() == OPTION_COMMAND; } - bool is_internal() const { return (m_flags & OPTION_FLAG_INTERNAL) != 0; } + bool is_internal() const { return m_flags & OPTION_FLAG_INTERNAL; } bool has_range() const { return (!m_minimum.empty() && !m_maximum.empty()); } int priority() const { return m_priority; } bool is_changed() const { return m_changed; } |