Fix new MinGW problems after raising c++ standard

This commit is contained in:
Jean Pierre Cimalando 2021-03-07 18:12:33 +01:00
parent 9e362a5507
commit 0b27ef3845
2 changed files with 4 additions and 0 deletions

View file

@ -11,6 +11,9 @@
#include <absl/strings/ascii.h>
#include <absl/algorithm/container.h>
#include <memory>
#if defined(_WIN32)
#include <windows.h>
#endif
// wait at least this much before refreshing the file rescan
// it permits to not repeat the operation many times if many searches are

View file

@ -5,6 +5,7 @@
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
#include "SfizzSettings.h"
#include <memory>
#include <cstdlib>
std::string SfizzSettings::load_or(const char* key, absl::string_view defaultValue)