Skip to content

Commit 0feae8c

Browse files
authored
Merge pull request #120 from bjovke/master
Code formatting, sorry...
2 parents bd1d53d + 46fc057 commit 0feae8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

zmq.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,8 @@ namespace zmq
868868
int rc = zmq_poller_wait_all (poller_ptr, poller_events.data (), poller_events.size (), static_cast<long>(timeout.count ()));
869869
if (rc >= 0) {
870870
std::for_each (poller_events.begin (), poller_events.begin () + rc, [](zmq_poller_event_t& event) {
871-
if (event.user_data != NULL) (*reinterpret_cast<std::function<void(void)>*> (event.user_data)) ();
871+
if (event.user_data != NULL)
872+
(*reinterpret_cast<std::function<void(void)>*> (event.user_data)) ();
872873
});
873874
return true;
874875
}

0 commit comments

Comments
 (0)