mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
21 lines
328 B
C++
21 lines
328 B
C++
#ifdef gen_time
|
|
#define GEN_FEATURE_PARSING
|
|
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
|
#define GEN_ENFORCE_STRONG_CODE_TYPES
|
|
#define GEN_EXPOSE_BACKEND
|
|
#define GEN_BENCHMARK
|
|
#include "gen.hpp"
|
|
|
|
void check_upfront()
|
|
{
|
|
using namespace gen;
|
|
log_fmt("\nupfront: ");
|
|
gen::init();
|
|
|
|
|
|
|
|
gen::deinit();
|
|
log_fmt("Passed!\n");
|
|
}
|
|
|
|
#endif |