mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
style fixes
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user