mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
26 lines
267 B
C++
26 lines
267 B
C++
#include "gen.cpp"
|
|
#include "sanity.cpp"
|
|
|
|
#if gen_time
|
|
int gen_main()
|
|
{
|
|
using namespace gen;
|
|
log_fmt("\ngen_time:");
|
|
|
|
check_sanity();
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
|
|
// This only has to be done if symbol conflicts occur.
|
|
#ifndef gen_time
|
|
int main()
|
|
{
|
|
|
|
|
|
return 0;
|
|
}
|
|
#endif
|