make variable names more telling

This commit is contained in:
Dennis Luxen 2014-03-17 14:40:10 +01:00
parent 6a0a59896e
commit 38ae213260

View File

@ -74,9 +74,10 @@ PBFParser::~PBFParser() {
}
// Clean up any leftover ThreadData objects in the queue
_ThreadData* td;
while (threadDataQueue->try_pop(td)) {
delete td;
_ThreadData* thread_data;
while (threadDataQueue->try_pop(thread_data))
{
delete thread_data;
}
google::protobuf::ShutdownProtobufLibrary();