Fixed bug in vector unit test

This commit is contained in:
2025-11-17 09:28:30 +01:00
parent 9e52b7bca4
commit 86f2fb20dd

View File

@@ -208,7 +208,7 @@ void test_vector_sort_string() {
// Sort vector with custom data type
typedef struct {
char name[256];
const char *name;
int age;
} Person;