chore: DisplayInvalidException only include stdstring on apple systems

This commit is contained in:
sithlord48
2025-11-06 17:55:06 -05:00
committed by Chris Rizzitello
parent 176b5c2459
commit 04bea86254

View File

@ -7,7 +7,10 @@
#pragma once
#include <stdexcept>
#ifdef __APPLE__
#include <string>
#endif
class DisplayInvalidException : public std::runtime_error
{