fix: added missing header include for gcc (#54)

This commit is contained in:
Ranieri
2026-02-14 13:00:36 -03:00
committed by GitHub
parent 8f747334d6
commit b7973593ee
5 changed files with 5 additions and 2 deletions
-1
View File
@@ -33,7 +33,6 @@ jobs:
- name: Tests
shell: cmd
continue-on-error: true # When tests start passing, this line should be removed.
run: |
.\build\ps2xTest\Release\ps2x_tests.exe
- name: Upload artifact
+2 -1
View File
@@ -16,4 +16,5 @@ build
ps2xRuntime/include/ps2_recompiled_functions.h
ps2xRuntime/include/ps2_recompiled_stubs.h
ps2xRuntime/src/runner/ps2_recompiled_functions.cpp
ps2xRuntime/src/runner/register_functions.cpp
ps2xRuntime/src/runner/register_functions.cpp
ps2xRuntime/output
+1
View File
@@ -14,6 +14,7 @@
#include <functional>
#include <limits>
#include <cctype>
#include <optional>
namespace fs = std::filesystem;
@@ -1,6 +1,7 @@
#ifndef PS2RECOMP_CODE_GENERATOR_H
#define PS2RECOMP_CODE_GENERATOR_H
#include <cstdint>
#include <string>
#include <vector>
#include <map>
+1
View File
@@ -1,6 +1,7 @@
#ifndef PS2_RUNTIME_H
#define PS2_RUNTIME_H
#include <cstring>
#include <cstdint>
#include <vector>
#include <unordered_map>