geode/loader/include/Geode/c++stl/gdstdlib.hpp
2024-03-25 20:51:17 +01:00

13 lines
220 B
C++

#pragma once
#include <Geode/platform/platform.hpp>
#include "string.hpp"
#if defined(GEODE_IS_ANDROID)
#include "gnustl.hpp"
#elif defined(GEODE_IS_WINDOWS)
#include "msvcstl.hpp"
#else
#include "aliastl.hpp"
#endif