mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
Some minor formatting and comment fixes
This commit is contained in:
parent
a586966c65
commit
f85d706131
232 changed files with 82097 additions and 82135 deletions
|
|
@ -23,8 +23,7 @@
|
|||
namespace juce
|
||||
{
|
||||
|
||||
InterprocessConnectionServer::InterprocessConnectionServer()
|
||||
: Thread ("Juce IPC server")
|
||||
InterprocessConnectionServer::InterprocessConnectionServer() : Thread ("JUCE IPC server")
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -73,7 +72,7 @@ void InterprocessConnectionServer::run()
|
|||
ScopedPointer<StreamingSocket> clientSocket (socket->waitForNextConnection());
|
||||
|
||||
if (clientSocket != nullptr)
|
||||
if (InterprocessConnection* newConnection = createConnectionObject())
|
||||
if (auto* newConnection = createConnectionObject())
|
||||
newConnection->initialiseWithSocket (clientSocket.release());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue