diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc index 701bce8..ba1df9f 100644 --- a/ipc/ipc_channel_win.cc +++ b/ipc/ipc_channel_win.cc @@ -392,7 +392,7 @@ void Channel::ChannelImpl::OnIOCompleted(MessageLoopForIO::IOContext* context, } // we don't support recursion through OnMessageReceived yet! DCHECK(!processing_incoming_); - AutoReset auto_reset_processing_incoming(&processing_incoming_, true); + AutoReset<bool> auto_reset_processing_incoming(&processing_incoming_, true); ok = ProcessIncomingMessages(context, bytes_transfered); } else { DCHECK(context == &output_state_.context); |