aboutsummaryrefslogtreecommitdiff
path: root/lib/executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/executor.h')
-rw-r--r--lib/executor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/executor.h b/lib/executor.h
index 67493d4..f04f3f1 100644
--- a/lib/executor.h
+++ b/lib/executor.h
@@ -13,7 +13,9 @@ namespace nMatcha {
Executor& operator=(const Executor&) = delete;
Executor() = default;
- const void* getStackPtr() const { return mStackPtr; }
+ const void* getStackPtr() const {
+ return mStackPtr;
+ }
void spawn(std::unique_ptr<Thread> t);
void run();