Enable Compilation on More Platforms

Solves the "fatal error: no member named 'find_if' in namespace 'std'" compiler error experienced by certain environments.
This commit is contained in:
Caffarius
2024-07-12 13:10:46 -04:00
committed by GitHub
parent 162ca0899d
commit 9fa3fafb64

View File

@@ -15,6 +15,7 @@
#include <sstream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
void split(std::vector<std::string>& dest, std::string const str, char const* delim)
{