make variable names more telling

This commit is contained in:
Dennis Luxen 2014-03-17 14:39:24 +01:00
parent 187cb56364
commit 6a0a59896e

View File

@ -49,9 +49,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PBFParser::PBFParser(
const char * fileName,
ExtractorCallbacks* ec,
ScriptingEnvironment& se
) : BaseParser( ec, se ) {
ExtractorCallbacks * extractor_callbacks,
ScriptingEnvironment& scripting_environment
) : BaseParser( extractor_callbacks, scripting_environment ) {
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.