1
0
forked from Alepha/Alepha

Add tagged ctor check support.

This commit is contained in:
2024-03-18 15:49:23 -04:00
parent ad8690769e
commit 696e1b56f6
5 changed files with 129 additions and 0 deletions

View File

@ -6,3 +6,12 @@ static_assert( __cplusplus > 2020'99 );
// This file will eventually contain all of the constants that control how much generated code the
// C++17 Reflection system will geeerate.
// Note: not exported!
namespace Alepha::Hydrogen::Reflection ::detail:: config_m
{
namespace C
{
const std::size_t max_ctor_size= 32;
}
}