summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/IsThread.h
diff options
context:
space:
mode:
authorSamuel Barney <samjbarney@gmail.com>2014-08-21 21:43:19 +0200
committerSamuel Barney <samjbarney@gmail.com>2014-08-21 21:43:19 +0200
commit01c899f9036a01d7c60d05b89c953138a1770810 (patch)
tree964e8ee4893a1fe346d20fdfbe027bf30a4ba122 /src/OSSupport/IsThread.h
parentTemporarily commented out override directives. (diff)
downloadcuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar
cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.gz
cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.bz2
cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.lz
cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.xz
cuberite-01c899f9036a01d7c60d05b89c953138a1770810.tar.zst
cuberite-01c899f9036a01d7c60d05b89c953138a1770810.zip
Diffstat (limited to 'src/OSSupport/IsThread.h')
-rw-r--r--src/OSSupport/IsThread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OSSupport/IsThread.h b/src/OSSupport/IsThread.h
index 2b9b2ae4b..f349d0895 100644
--- a/src/OSSupport/IsThread.h
+++ b/src/OSSupport/IsThread.h
@@ -7,7 +7,7 @@
/*
Usage:
To have a new thread, declare a class descending from cIsClass.
-Then /*override*/ its Execute() method to provide your thread processing.
+Then override its Execute() method to provide your thread processing.
In the descending class' constructor call the Start() method to start the thread once you're finished with initialization.
*/
@@ -29,7 +29,7 @@ protected:
/// This is the main thread entrypoint
virtual void Execute(void) = 0;
- /// The /*override*/n 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: