Split classes into neater header units

This commit is contained in:
2026-05-24 04:28:30 -04:00
parent e29bee52cf
commit 5d139abff2
8 changed files with 307 additions and 289 deletions
+3 -2
View File
@@ -12,14 +12,15 @@
#include <spinscale/spinLock.h>
#include <spinscale/co/coQutex.h>
#include <spinscale/co/promiseChainLink.h>
#include <spinscale/co/promises.h>
#include <spinscale/co/promiseReturnOps.h>
#include <spinscale/co/returnValues.h>
namespace sscl::co {
template <typename T>
struct NonPostingPromise
: public PromiseChainLink,
public PostingPromiseReturnOps<NonPostingPromise<T>, T>
public PromiseReturnOps<NonPostingPromise<T>, T>
{
struct PostBackStatus
{