Skip to content

Instantly share code, notes, and snippets.

View Dugy's full-sized avatar

Dugy

View GitHub Profile
#ifndef RESUMABLE_BY_DUGI
#define RESUMABLE_BY_DUGI
#include <coroutine>
#include <stdexcept>
struct CallToFinsihedCoroutine : public std::logic_error {
using std::logic_error::logic_error;
};
template <typename T>