mirror of
https://github.com/ran-j/PS2Recomp.git
synced 2026-09-26 08:51:05 -04:00
fix: added missing header include for gcc (#54)
This commit is contained in:
@@ -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
@@ -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
|
||||
@@ -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,6 +1,7 @@
|
||||
#ifndef PS2_RUNTIME_H
|
||||
#define PS2_RUNTIME_H
|
||||
|
||||
#include <cstring>
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
#include <unordered_map>
|
||||
|
||||
Reference in New Issue
Block a user