Merge pull request #96 from kth5/kth5-gcc-14

Fix missing std::find_if and others with GCC 14.1.1
This commit is contained in:
dingusdev
2024-06-24 18:23:37 -07:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#define _CRT_SECURE_NO_WARNINGS /* shut up MSVC regarding the unsafe strcpy/strcat */
#include "ppcdisasm.h"
#include <algorithm>
#include <cstring>
#include <functional> /* without this, MSVC doesn't understand std::function */
#include <iostream>

View File

@@ -28,6 +28,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <devices/memctrl/mpc106.h>
#include <loguru.hpp>
#include <algorithm>
#include <cinttypes>
#include <cstring>
#include <string>