1
0
forked from Alepha/Alepha

Clean up and regularize the prologue of files.

Mark them for C++20, remove the old module-faking hacks, etc.
This commit is contained in:
2023-02-10 08:58:29 -08:00
parent 49d53fecb6
commit fe66d726be
29 changed files with 46 additions and 23 deletions

View File

@ -1,4 +1,4 @@
static_assert( __cplusplus > 201700, "C++17 Required" );
static_assert( __cplusplus > 2020'00 );
#pragma once

View File

@ -1,4 +1,4 @@
static_assert( __cplusplus > 201700, "C++17 Required" );
static_assert( __cplusplus > 2020'00 );
#pragma once

View File

@ -2,7 +2,7 @@ static_assert( __cplusplus > 2020'00 );
#pragma once
#include <Alepha/Alepha.hpp>
#include <Alepha/Alepha.h>
#include <type_traits>
#include <optional>

View File

@ -1,4 +1,4 @@
static_assert( __cplusplus > 201700, "C++17 Required" );
static_assert( __cplusplus > 2020'00 );
#include <Alepha/Meta/is_sequence.h>
#include <Alepha/Meta/is_streamable.h>