Skip to content

Commit 4e92c18

Browse files
committed
- Fixing Thread
1 parent f39232c commit 4e92c18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ESPressio_Thread.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ namespace ESPressio {
121121
SetFreeOnTerminate(freeOnTerminate);
122122
}
123123

124-
virtual ~Thread() override;
124+
virtual ~Thread();
125125

126126
// Methods
127127
void GarbageCollect();

src/ESPressio_ThreadGarbageCollector.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace ESPressio {
2424
Start();
2525
}
2626

27-
void OnLoop() {
27+
void OnLoop() override {
2828
xSemaphoreTake(_semaphore, portMAX_DELAY);
2929
// Wait on the semaphore until we're told to clean up.
3030
ThreadManager::GetInstance()->CleanUp();

0 commit comments

Comments
 (0)