mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Misc ScopedPointer changes to start using reset() and get() rather than assignments and casts (part of an ongoing drift towards more std::unique_ptr compatibility)
This commit is contained in:
parent
c1bdfc6a55
commit
2dc9316420
131 changed files with 574 additions and 576 deletions
|
|
@ -46,7 +46,7 @@ bool InterprocessConnectionServer::beginWaitingForSocket (const int portNumber,
|
|||
return true;
|
||||
}
|
||||
|
||||
socket = nullptr;
|
||||
socket.reset();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -58,7 +58,7 @@ void InterprocessConnectionServer::stop()
|
|||
socket->close();
|
||||
|
||||
stopThread (4000);
|
||||
socket = nullptr;
|
||||
socket.reset();
|
||||
}
|
||||
|
||||
int InterprocessConnectionServer::getBoundPort() const noexcept
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue