aliastl string

This commit is contained in:
Cvolton 2024-06-04 23:33:07 +02:00
parent 81b4d7048e
commit 144b2d70da
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions
loader
include/Geode/c++stl
src/c++stl

View file

@ -52,7 +52,7 @@ namespace geode::stl {
}
namespace gd {
#ifdef GEODE_IS_MACOS
#if defined(GEODE_IS_MACOS) || defined(GEODE_IS_WINDOWS)
// rob uses libc++ now! this will prob work fine
using string = std::string;

View file

@ -14,7 +14,7 @@ using geode::stl::StringImpl;
#define impl implFor((*this))
namespace gd {
#ifndef GEODE_IS_MACOS
#if !defined(GEODE_IS_MACOS) && !defined(GEODE_IS_WINDOWS)
string::string() {
impl.setEmpty();
}