1
0
Fork 0
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:
jules 2017-11-28 17:46:15 +00:00
parent a586966c65
commit f85d706131
232 changed files with 82097 additions and 82135 deletions

View file

@ -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());
}
}