1
0
forked from Alepha/Alepha

Exception problem debugging.

This commit is contained in:
2024-09-05 12:15:14 -04:00
parent 90531755f8
commit 759b2ecdea
6 changed files with 34 additions and 11 deletions

View File

@ -33,9 +33,14 @@ namespace Alepha::Hydrogen::Atomic ::detail:: Dropbox_m
inline namespace exports
{
struct finished_exception;
template< typename > class Dropbox;
using DropboxFinishedException= synthetic_exception< struct finished_exception, FinishedException >;
template< template< auto > class > struct ck {};
template< typename > class tag;
using ck2= ck< tag >;
using DropboxFinishedException= synthetic_exception< finished_exception, FinishedException >;
using AnyTaggedDropboxFinishedException= AnyTagged< DropboxFinishedException >;
template< typename tag > using TaggedDropboxFinishedException= Tagged< DropboxFinishedException, tag >;