output feature id when printing feature to string

This commit is contained in:
Dane Springmeyer 2011-04-19 22:41:16 +00:00
parent b6723bcfb1
commit 318465ef53

View file

@ -150,6 +150,7 @@ public:
{
std::stringstream ss;
ss << "feature (" << std::endl;
ss << " id:" << id_ << std::endl;
for (std::map<std::string,value>::const_iterator itr=props_.begin();
itr != props_.end();++itr)
{