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:
@@ -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 ()
|
||||
|
||||
Reference in New Issue
Block a user