Remove disable_warnings header include

This commit is contained in:
dcvz 2024-06-04 22:00:48 +02:00
parent 8dfed04919
commit 01d768d98c
3 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View file

@ -53,3 +53,4 @@ imgui.ini
rt64.log
.idea
cmake-build*
.DS_Store

View file

@ -1542,7 +1542,6 @@ int main(int argc, char** argv) {
// Write the file header
fmt::print(single_output_file,
"#include \"librecomp/recomp.h\"\n"
"#include \"disable_warnings.h\"\n"
"#include \"funcs.h\"\n"
"\n");
}

View file

@ -1104,7 +1104,6 @@ bool RecompPort::recompile_function(const RecompPort::Context& context, const Re
// Write the file header
fmt::print(output_file,
"#include \"librecomp/recomp.h\"\n"
"#include \"disable_warnings.h\"\n"
"\n");
}