geode/loader/include/Geode/c++stl/gdstdlib.hpp
alk 9a51843727
Add msvcstl (#81)
* implement gd::string for windows

Co-authored-by: matcool <26722564+matcool@users.noreply.github.com>
2022-11-22 15:59:46 +03:00

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