Don't mark all lanes as designated when there are blank lane specifiers in the tag.

This commit is contained in:
Daniel Patterson
2016-10-25 14:22:06 -06:00
committed by Patrick Niklaus
parent f88f51fd98
commit 3dfbf42e61
11 changed files with 12674 additions and 583 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
#include "extractor/extractor.hpp"
#include "extractor/extractor_config.hpp"
#include "extractor/scripting_environment_lua.hpp"
#include "extractor/scripting_environment_sol2.hpp"
#include "util/log.hpp"
#include "util/version.hpp"
@@ -153,7 +153,7 @@ int main(int argc, char *argv[]) try
}
// setup scripting environment
extractor::LuaScriptingEnvironment scripting_environment(
extractor::Sol2ScriptingEnvironment scripting_environment(
extractor_config.profile_path.string().c_str());
auto exitcode = extractor::Extractor(extractor_config).run(scripting_environment);
@@ -166,4 +166,4 @@ catch (const std::bad_alloc &e)
util::Log(logERROR) << "[exception] " << e.what();
util::Log(logERROR) << "Please provide more memory or consider using a larger swapfile";
return EXIT_FAILURE;
}
}