summaryrefslogtreecommitdiff
path: root/include/event_service_store.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2021-08-23 01:02:34 +0300
committerEd Tanous <ed@tanous.net>2021-08-24 20:14:51 +0300
commit9301e9113f98db6700bf1f87c9834d0cf8b844cd (patch)
tree0b1568f267d5c0d0d699281c81feea6caf40dca2 /include/event_service_store.hpp
parent4147b8ac88c79949f2f9f5c2738aca53641e22c8 (diff)
downloadbmcweb-9301e9113f98db6700bf1f87c9834d0cf8b844cd.tar.xz
Fix warning with clang
When this code is compiled with clang, it gives a warning about condition that can never be true. Truth be told, comparing a uint64_t against < 0 will in fact, never be true. Tested: Compiled with clang. Code compiles. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I89872664cc781497489a9af3e9218ed65dd5e648
Diffstat (limited to 'include/event_service_store.hpp')
-rw-r--r--include/event_service_store.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/event_service_store.hpp b/include/event_service_store.hpp
index b04fe0ce62..345b690388 100644
--- a/include/event_service_store.hpp
+++ b/include/event_service_store.hpp
@@ -217,7 +217,6 @@ struct EventServiceConfig
const uint64_t* value =
element.value().get_ptr<const uint64_t*>();
if ((value == nullptr) ||
- (*value < std::numeric_limits<uint32_t>::lowest()) ||
(*value > std::numeric_limits<uint32_t>::max()))
{
continue;
@@ -229,7 +228,6 @@ struct EventServiceConfig
const uint64_t* value =
element.value().get_ptr<const uint64_t*>();
if ((value == nullptr) ||
- (*value < std::numeric_limits<uint32_t>::lowest()) ||
(*value > std::numeric_limits<uint32_t>::max()))
{
continue;