Bug Fix - tags report using std::cout

- The tags report was writing directly to std::cout, therefore
  bypassing the header/footer control.
This commit is contained in:
Paul Beckingham 2009-06-18 18:37:53 -04:00
parent b9a1993692
commit ae3257b623

View file

@ -175,9 +175,9 @@ std::string handleTags ()
}
// Render a list of tag names from the map.
std::cout << optionalBlankLine ();
out << optionalBlankLine ();
foreach (i, unique)
std::cout << i->first << std::endl;
out << i->first << std::endl;
if (unique.size ())
out << optionalBlankLine ()