Fix missing std::find_if and others with GCC 14.1.1

This commit is contained in:
kth5 2024-06-24 23:41:55 +02:00
parent d3096ebaac
commit 742662e4fc
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>