aboutsummaryrefslogtreecommitdiff
path: root/lib/executor.h
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-10-08 20:14:42 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-10-08 20:14:42 +0200
commit3b4a6097dee760d22eecd97ebe041c69da6b056a (patch)
treebf1536956a327c77c0975d1a6a0d04e230fd0aad /lib/executor.h
parent8d2529404437262c5bf0521063221906aeecfb22 (diff)
downloadmatcha-threads-3b4a6097dee760d22eecd97ebe041c69da6b056a.tar.gz
matcha-threads-3b4a6097dee760d22eecd97ebe041c69da6b056a.zip
remove incorrect const
Diffstat (limited to 'lib/executor.h')
-rw-r--r--lib/executor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/executor.h b/lib/executor.h
index 0f2eca9..ac007b1 100644
--- a/lib/executor.h
+++ b/lib/executor.h
@@ -34,6 +34,6 @@ namespace nMatcha {
void* mStackPtr;
std::forward_list<std::unique_ptr<Thread>> mThreads;
- void yield_to(const Thread* t) const;
+ void yield_to(const Thread* t);
};
} // namespace nMatcha