mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-07 22:58:34 +02:00
Tree
- Added node pointer to ::dump output. Helps debugging.
This commit is contained in:
parent
f59be41389
commit
8376d99e88
1 changed files with 2 additions and 1 deletions
|
@ -273,7 +273,8 @@ void Tree::dumpNode (Tree* t, int depth, std::stringstream& output)
|
|||
for (int i = 0; i < depth; ++i)
|
||||
output << " ";
|
||||
|
||||
output << "\033[1m" << t->_name << "\033[0m";
|
||||
output << std::hex << t << " "
|
||||
<< "\033[1m" << t->_name << "\033[0m";
|
||||
|
||||
// Dump attributes.
|
||||
std::string atts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue