revert(kernel/std): 🔥 std::set is too hard to implement for now

This commit is contained in:
2025-05-11 16:31:12 +00:00
parent 9626ec4662
commit 7873d0e724
3 changed files with 201 additions and 5 deletions

View File

@ -28,6 +28,8 @@ void test_stl_unordered_map() {}
void test_stl_future();
void test_stl_array();
void test_stl_shared_ptr();
void test_stl_set();
void test_stl_compare();
void Test_stl()
{
@ -42,6 +44,8 @@ void Test_stl()
test_stl_future();
test_stl_array();
test_stl_shared_ptr();
test_stl_set();
test_stl_compare();
}
#endif // DEBUG