Interval: Added synthetic indicator to ::dump

This commit is contained in:
Paul Beckingham 2017-03-19 15:07:06 -04:00
parent e4daeb2078
commit 61b9667df8
2 changed files with 6 additions and 2 deletions

View file

@ -199,6 +199,9 @@ std::string Interval::dump () const
out << ' ' << quoteIfNeeded (tag);
}
if (synthetic)
out << " synthetic";
return out.str ();
}

View file

@ -50,6 +50,7 @@ public:
public:
Range range {};
int id {0};
bool synthetic {false};
private:
std::set <std::string> _tags {};