Remove extra semicolons:

Several functions had an extra semicolon. This removes them.
This commit is contained in:
Joe Loser
2018-05-04 08:39:31 -04:00
committed by Nikolaos D. Bougalis
parent c1c332f0b0
commit 04f1388860
21 changed files with 33 additions and 32 deletions

View File

@@ -432,7 +432,7 @@ class ServerStatus_test :
return;
BEAST_EXPECT(resp.result() == beast::http::status::ok);
}
};
}
void
testTruncatedWSUpgrade(boost::asio::yield_context& yield)
@@ -481,7 +481,7 @@ class ServerStatus_test :
// keep trying to read until it gives up (by timeout)
async_read(sock, sb, resp, yield[ec]);
BEAST_EXPECT(ec);
};
}
void
testCantConnect(
@@ -1049,7 +1049,7 @@ public:
testStatusNotOkay (yield);
});
};
}
};
BEAST_DEFINE_TESTSUITE(ServerStatus, server, ripple);