From 187cb56364d6ea4930fd31b63fe8444689100467 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 17 Mar 2014 14:37:33 +0100 Subject: [PATCH] split long line in two --- Extractor/PBFParser.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Extractor/PBFParser.cpp b/Extractor/PBFParser.cpp index b30aa9425..3ce2175a6 100644 --- a/Extractor/PBFParser.cpp +++ b/Extractor/PBFParser.cpp @@ -55,7 +55,9 @@ PBFParser::PBFParser( GOOGLE_PROTOBUF_VERIFY_VERSION; //TODO: What is the bottleneck here? Filling the queue or reading the stuff from disk? //NOTE: With Lua scripting, it is parsing the stuff. I/O is virtually for free. - threadDataQueue = boost::make_shared >( 2500 ); /* Max 2500 items in queue, hardcoded. */ + + // Max 2500 items in queue, hardcoded. + threadDataQueue = boost::make_shared >( 2500 ); input.open(fileName, std::ios::in | std::ios::binary); if (!input) {