dep/reshadefx: Fix building on MacOS/Linux

pull/2995/head
Stenzek 2 years ago
parent 8c638b4c78
commit 68eb32f963

@ -8,6 +8,7 @@
#include "effect_codegen.hpp"
#include <cctype> // std::toupper
#include <cassert>
#include <limits>
#include <functional>
#include <string_view>

@ -5,7 +5,11 @@
#include "effect_symbol_table.hpp"
#include <cassert>
#ifndef __APPLE__
#include <malloc.h> // alloca
#else
#include <alloca.h>
#endif
#include <algorithm> // std::upper_bound, std::sort
#include <functional> // std::greater

Loading…
Cancel
Save