We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d649339 commit d759d4fCopy full SHA for d759d4f
src/cleanup_queue-inl.h
@@ -26,8 +26,8 @@ bool CleanupQueue::empty() const {
26
}
27
28
void CleanupQueue::Add(Callback cb, void* arg) {
29
- auto insertion_info = cleanup_hooks_.emplace(
30
- CleanupHookCallback{cb, arg, cleanup_hook_counter_++});
+ auto insertion_info =
+ cleanup_hooks_.emplace(cb, arg, cleanup_hook_counter_++);
31
// Make sure there was no existing element with these values.
32
CHECK_EQ(insertion_info.second, true);
33
0 commit comments