Sharing more of trace viewer code.

This commit is contained in:
Ben Vanik
2015-12-13 11:22:47 -08:00
parent 5db84105c4
commit 95b0ecf774
6 changed files with 72 additions and 70 deletions

View File

@@ -71,9 +71,9 @@ class TraceReader {
};
};
const uint8_t* start_ptr;
const uint8_t* end_ptr;
int command_count;
const uint8_t* start_ptr = nullptr;
const uint8_t* end_ptr = nullptr;
int command_count = 0;
std::vector<Command> commands;
};