TheBrokenRail b858a2fc1a
All checks were successful
CI / Build (push) Successful in 17s
Remove Unneeded Check
2025-04-12 23:21:18 -04:00

37 lines
588 B
C++

#include <type_traits>
// Internal Macros
{{ include internal.h }}
// Function Object
{{ include function.h }}
// Headers
#include <cstddef>
#include <string>
#include <vector>
#include <map>
#include <cstring>
// Warnings
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
// Custom Wrappers
{{ include custom.h }}
// Shortcuts
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
// Forward Declarations
{{ forwardDeclarations }}
// Extra Headers
{{ extraHeaders }}
{{ main }}
// Cleanup Warnings
#pragma GCC diagnostic pop