1
0
forked from Alepha/Alepha

Starting out Alepha from scratch, as a C++17 effort.

This one is going to be prepped for GitHub private, from the get
go.  This initial commit has some evaluation helpers and the
unit testing infrastructure.  `TableTest` will come next.
This commit is contained in:
2021-07-01 01:42:11 -04:00
commit 7ceef7e1b1
6 changed files with 253 additions and 0 deletions

8
Alepha.h Normal file
View File

@ -0,0 +1,8 @@
static_assert( __cplusplus > 201700, "C++17 Required" );
#pragma once
namespace Alepha
{
inline namespace Hydrogen {}
}