1
0
forked from Alepha/Alepha

Merge branch 'master' of coruscant:/Sources/Repositories/Alepha

This commit is contained in:
2023-11-11 15:01:26 -05:00
132 changed files with 2337 additions and 1050 deletions

View File

@ -1,4 +1,4 @@
static_assert( __cplusplus > 2020'00 );
static_assert( __cplusplus > 2020'99 );
#pragma once
@ -277,6 +277,8 @@ namespace Alepha::Hydrogen ::detail:: Exception_m
~Violation() override { if( not active ) abort(); }
Violation()= default;
Violation( const Violation &copy )= delete;
Violation( Violation &copy ) : active( copy.active ) { copy.active= false; }
};