TheBrokenRail 818b7535eb
All checks were successful
CI / Build (push) Successful in 17s
Simplify Generated Code
2025-03-30 22:49:51 -04:00

43 lines
697 B
C++

#pragma once
// Check Architecture
#ifndef __arm__
#error "Symbols Are ARM-Only"
#endif
// Type Traits
#include <type_traits>
// Internal Macros
{{ include internal.h }}
// Function Object
{{ include function.h }}
// Headers
#include <cstddef>
#include <string>
#include <vector>
#include <map>
#include <cstring>
// Shortcuts
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
// Forward Declarations
{{ forwardDeclarations }}
// Extra Headers
{{ extraHeaders }}
// Warnings
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#pragma GCC diagnostic ignored "-Wparentheses"
{{ main }}
// Cleanup Warnings
#pragma GCC diagnostic pop