Skip to content

Commit 7bbc224

Browse files
iox-#831 Fix check of empty callback in popo::Listener
Signed-off-by: Simon Hoinkis <[email protected]>
1 parent 54cd5f7 commit 7bbc224

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceoryx_posh/source/popo/listener.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ bool Event_t::isInitialized() const noexcept
102102
{
103103
return m_origin != nullptr && m_eventId != INVALID_ID && m_eventType != INVALID_ID && m_eventTypeHash != INVALID_ID
104104
&& m_callback != nullptr && m_translationCallback != nullptr
105-
&& m_invalidationCallback != cxx::function<void(uint64_t)>();
105+
&& m_invalidationCallback;
106106
}
107107
} // namespace internal
108108

0 commit comments

Comments
 (0)