- Fixed up PrettyWriters

This commit is contained in:
2025-08-09 19:43:26 -04:00
parent efe56b3699
commit d2be083a8f
7 changed files with 326 additions and 121 deletions

View File

@@ -31,8 +31,10 @@ namespace fennec::test
const char string[] = "Hello World!";
array<char, sizeof(string)> arr1;
array<char, sizeof(string)> arr2;
std::array<char, sizeof(string)> stdarr;
strcpy(&arr1[0], string);
strcpy(&arr2[0], string);
strcpy(&stdarr[0], string);
fennec_test_run(strcmp(&arr1[0], string), 0);
fennec_test_run(strcmp(&arr2[0], string), 0);