common/cmdparse.cc: remove unused variable

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2013-06-24 14:29:50 +02:00
parent a92a720e00
commit b485a3e68a

View File

@ -47,7 +47,7 @@ dump_cmd_to_json(JSONFormatter *f, const string& cmd)
// Snarf up all the key=val,key=val pairs, put 'em in a dict.
// no '=val' implies '=True'.
std::stringstream argdesc(word);
std::string keyval, name;
std::string keyval;
std::map<std::string, std::string>desckv;
// accumulate descriptor keywords in desckv
size_t pos;