Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Aug 9, 2023
1 parent 1e5c5e9 commit 2a5fbf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/IOController_Posix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ namespace extension {
for (auto it = range.first; it != range.second; ++it) {

// Load in the relevant events that happened into the waiting events
it->waiting_events = it->waiting_events | (it->events & fd.revents);
it->waiting_events = short(it->waiting_events | (it->events & fd.revents));
}
}
}
Expand Down

0 comments on commit 2a5fbf3

Please sign in to comment.