mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Add override specifier to some Beast functions
This commit is contained in:
@@ -221,7 +221,7 @@ public:
|
|||||||
signalThreadShouldExit();
|
signalThreadShouldExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
void run()
|
void run() override
|
||||||
{
|
{
|
||||||
connection = [[NSURLConnection alloc] initWithRequest: request
|
connection = [[NSURLConnection alloc] initWithRequest: request
|
||||||
delegate: delegate];
|
delegate: delegate];
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void run()
|
void run() override
|
||||||
{
|
{
|
||||||
while (! threadShouldExit())
|
while (! threadShouldExit())
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ public:
|
|||||||
|
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
#ifndef DOXYGEN
|
#ifndef DOXYGEN
|
||||||
void run();
|
void run() override;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user