make variable names more telling
This commit is contained in:
parent
6a0a59896e
commit
38ae213260
@ -74,9 +74,10 @@ PBFParser::~PBFParser() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Clean up any leftover ThreadData objects in the queue
|
// Clean up any leftover ThreadData objects in the queue
|
||||||
_ThreadData* td;
|
_ThreadData* thread_data;
|
||||||
while (threadDataQueue->try_pop(td)) {
|
while (threadDataQueue->try_pop(thread_data))
|
||||||
delete td;
|
{
|
||||||
|
delete thread_data;
|
||||||
}
|
}
|
||||||
google::protobuf::ShutdownProtobufLibrary();
|
google::protobuf::ShutdownProtobufLibrary();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user