Add override specifier to some Beast functions

This commit is contained in:
Vinnie Falco
2013-06-24 15:50:14 -07:00
parent 04622e1576
commit 95a4dd5693
3 changed files with 3 additions and 3 deletions

View File

@@ -221,7 +221,7 @@ public:
signalThreadShouldExit();
}
void run()
void run() override
{
connection = [[NSURLConnection alloc] initWithRequest: request
delegate: delegate];

View File

@@ -62,7 +62,7 @@ public:
{
}
void run()
void run() override
{
while (! threadShouldExit())
{

View File

@@ -129,7 +129,7 @@ public:
//==============================================================================
#ifndef DOXYGEN
void run();
void run() override;
#endif
//==============================================================================