TheBrokenRail fd720d2321
All checks were successful
CI / Build (push) Successful in 15s
Small Tweak
2025-03-31 00:42:13 -04:00

42 lines
650 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"
{{ main }}
// Cleanup Warnings
#pragma GCC diagnostic pop