mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Tree
- Removed pointers from ::dumpNode, which are useful for debugging new/delete, but simply noise at other times.
This commit is contained in:
parent
e353d8eb8b
commit
bc3dc1e50e
1 changed files with 3 additions and 1 deletions
|
@ -273,7 +273,9 @@ void Tree::dumpNode (Tree* t, int depth, std::stringstream& output)
|
|||
for (int i = 0; i < depth; ++i)
|
||||
output << " ";
|
||||
|
||||
output << std::hex << t << " "
|
||||
output
|
||||
// Useful for debugging tree node new/delete errors.
|
||||
// << std::hex << t << " "
|
||||
<< "\033[1m" << t->_name << "\033[0m";
|
||||
|
||||
// Dump attributes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue