- ::add needed to clear ::_id_ranges and ::_uuid_list so that ::analyze can
  repopulate them.
This commit is contained in:
Paul Beckingham 2014-10-27 14:03:50 -04:00
parent d5e6aa7640
commit b1b40cacc1

View file

@ -267,6 +267,10 @@ void CLI::initialize (int argc, const char** argv)
// Capture a single argument, and recalc everything.
void CLI::add (const std::string& arg)
{
// Clean the ID/UUID lists, because they will be rebuilt.
_id_ranges.clear ();
_uuid_list.clear ();
addArg (arg);
analyze ();
}