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
diff --git a/include/event_service_store.hpp b/include/event_service_store.hpp
index b04fe0c..345b690 100644
--- a/include/event_service_store.hpp
+++ b/include/event_service_store.hpp
@@ -217,7 +217,6 @@
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 @@
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;