diff options
Diffstat (limited to 'nihil.posix/executor.ccm')
| -rw-r--r-- | nihil.posix/executor.ccm | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/nihil.posix/executor.ccm b/nihil.posix/executor.ccm index f348dc8..d9bde88 100644 --- a/nihil.posix/executor.ccm +++ b/nihil.posix/executor.ccm @@ -1,19 +1,12 @@ -/* - * This source code is released into the public domain. - */ - -module; - -#include <concepts> -#include <type_traits> - +// This source code is released into the public domain. export module nihil.posix:executor; +import nihil.std; + namespace nihil { -/* - * A concept to mark spawn executors. - */ +// A concept to mark spawn executors, which should contain: +// using tag = exec_tag; export struct exec_tag{}; |
