style fixes

This commit is contained in:
Günter Obiltschnig
2018-03-05 15:05:04 +01:00
parent 181fc0eea3
commit 7eb1325bba
16 changed files with 48 additions and 46 deletions

View File

@@ -47,7 +47,8 @@ MulticastSocketTest::~MulticastSocketTest()
void MulticastSocketTest::testMulticast()
{
try {
try
{
MulticastEchoServer echoServer;
MulticastSocket ms(SocketAddress::IPv4);
int n = ms.sendTo("hello", 5, echoServer.group());
@@ -58,10 +59,10 @@ void MulticastSocketTest::testMulticast()
assert (std::string(buffer, n) == "hello");
ms.close();
}
catch(Poco::NotImplementedException e)
catch (Poco::NotImplementedException e)
{
#if POCO_OS != POCO_OS_ANDROID
throw e;
throw;
#endif
}
}