make variable names more telling
This commit is contained in:
parent
187cb56364
commit
6a0a59896e
@ -49,9 +49,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
PBFParser::PBFParser(
|
PBFParser::PBFParser(
|
||||||
const char * fileName,
|
const char * fileName,
|
||||||
ExtractorCallbacks* ec,
|
ExtractorCallbacks * extractor_callbacks,
|
||||||
ScriptingEnvironment& se
|
ScriptingEnvironment& scripting_environment
|
||||||
) : BaseParser( ec, se ) {
|
) : BaseParser( extractor_callbacks, scripting_environment ) {
|
||||||
GOOGLE_PROTOBUF_VERIFY_VERSION;
|
GOOGLE_PROTOBUF_VERIFY_VERSION;
|
||||||
//TODO: What is the bottleneck here? Filling the queue or reading the stuff from disk?
|
//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.
|
//NOTE: With Lua scripting, it is parsing the stuff. I/O is virtually for free.
|
||||||
|
Loading…
Reference in New Issue
Block a user