So i had this error with a large code that I'm working on for college, i need to visualize how strings get reorder while debugging in order to know my program is working, but debugger just shows (stringVariableName) = Summary unavailable. I created this small piece of code to test with standalone strings, vector and integers to see if it made a difference, but it only shows integers.
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<string> testString = {"test1", "test2", "test3"};
vector<int> testInt = {1,2,3};
string test = "test1";
}

I know i can go into __r_std::1 ... to see the value of the string but I'm working with over 10 thousand strings that i cant verify one by one like that.
Some details, I'm using MacOS 13.4.1, clang 14.0.3, IDE: Clion 2022.2.5 and i tried with both c++ 20 and c++ 17.
I was expecting being able to visualize the string straight from the debugger.