mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-03 13:42:31 +00:00
Fix osx pipeline being unhappy for unordered_map
- v_draw.hpp was simply missing the header entirely. - r_debug_printer.cpp is the weird one -- unordered_set's definition uses unordered_map, but it seems like osx's standard library does not include it in their definition? wut?
This commit is contained in:
parent
af5a65440d
commit
68eb4311f0
2 changed files with 2 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include <string_view>
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
|
||||
#include "r_debug.hpp"
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
#include <string_view>
|
||||
#include <optional>
|
||||
#include <utility>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <fmt/core.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue