diff options
Diffstat (limited to 'lib/thread.h')
-rw-r--r-- | lib/thread.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/thread.h b/lib/thread.h index 3304892..c181425 100644 --- a/lib/thread.h +++ b/lib/thread.h @@ -16,7 +16,9 @@ namespace nMatcha { virtual void threadFn() = 0; - bool isFinished() const { return mFinished; } + bool isFinished() const { + return mFinished; + } protected: void yield(); |