mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
9a51843727
* implement gd::string for windows Co-authored-by: matcool <26722564+matcool@users.noreply.github.com>
9 lines
142 B
C++
9 lines
142 B
C++
#pragma once
|
|
|
|
#include <Geode/platform/platform.hpp>
|
|
|
|
#if defined(GEODE_IS_WINDOWS)
|
|
#include "msvcstl.hpp"
|
|
#else
|
|
#include "gnustl.hpp"
|
|
#endif
|