refactor(kernel/std): ♻️ rename test function to test_stl_shared_ptr

This commit is contained in:
2025-05-10 06:03:58 +00:00
parent fa2e37f603
commit 21db83b943
2 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,7 @@ void test_stl_string();
void test_stl_unordered_map() {}
void test_stl_future();
void test_stl_array();
void test_stl_shared_ptr();
void Test_stl()
{
@ -40,6 +41,7 @@ void Test_stl()
test_stl_unordered_map();
test_stl_future();
test_stl_array();
test_stl_shared_ptr();
}
#endif // DEBUG