More work on VarObj visualizer.

This commit is contained in:
Ernie Pasveer
2022-08-21 15:53:35 -05:00
parent 20aa3b2bb3
commit f575ab921a
13 changed files with 318 additions and 39 deletions
+7 -7
View File
@@ -4,16 +4,16 @@
struct Location {
std::string city;
std::string state;
int zip;
std::string city;
std::string state;
int zip;
};
struct Person {
std::string name;
int age;
float salary;
struct Location location;
std::string name;
int age;
float salary;
struct Location location;
};