summaryrefslogtreecommitdiffstats
path: root/src/OSSupport
diff options
context:
space:
mode:
Diffstat (limited to 'src/OSSupport')
-rw-r--r--src/OSSupport/IsThread.h2
-rw-r--r--src/OSSupport/ListenThread.h4
-rw-r--r--src/OSSupport/SocketThreads.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/OSSupport/IsThread.h b/src/OSSupport/IsThread.h
index c20fc3e7e..f349d0895 100644
--- a/src/OSSupport/IsThread.h
+++ b/src/OSSupport/IsThread.h
@@ -29,7 +29,7 @@ protected:
/// This is the main thread entrypoint
virtual void Execute(void) = 0;
- /// The overriden Execute() method should check this value periodically and terminate if this is true
+ /// The overridden Execute() method should check this value periodically and terminate if this is true
volatile bool m_ShouldTerminate;
public:
diff --git a/src/OSSupport/ListenThread.h b/src/OSSupport/ListenThread.h
index b2d806c82..776b84e0e 100644
--- a/src/OSSupport/ListenThread.h
+++ b/src/OSSupport/ListenThread.h
@@ -76,8 +76,8 @@ protected:
*/
bool CreateSockets(const AString & a_PortsString);
- // cIsThread override:
- virtual void Execute(void) override;
+ // cIsThread /*override*/:
+ virtual void Execute(void) /*override*/;
} ;
diff --git a/src/OSSupport/SocketThreads.h b/src/OSSupport/SocketThreads.h
index 944f5f3bc..e19a72409 100644
--- a/src/OSSupport/SocketThreads.h
+++ b/src/OSSupport/SocketThreads.h
@@ -157,7 +157,7 @@ private:
sSlot m_Slots[MAX_SLOTS];
int m_NumSlots; // Number of slots actually used
- virtual void Execute(void) override;
+ virtual void Execute(void) /*override*/;
/** Prepares the Read and Write socket sets for select()
Puts all sockets into the read set, along with m_ControlSocket1.