Cycles: Cleanup, don't use strict C prototypes

Those are more like a legacy of language, which is not
needed in C++.
This commit is contained in:
2018-11-09 12:01:38 +01:00
parent c86d4b1d80
commit 2330cadb0f
29 changed files with 63 additions and 63 deletions

View File

@@ -21,7 +21,7 @@
CCL_NAMESPACE_BEGIN
thread::thread(function<void(void)> run_cb, int group)
thread::thread(function<void()> run_cb, int group)
: run_cb_(run_cb),
joined_(false),
group_(group)