We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dff45e commit 8633bbbCopy full SHA for 8633bbb
.github/workflows/main.yml
@@ -22,6 +22,8 @@ jobs:
22
23
- name: show g++ version
24
run: g++ --version
25
+ - name: show clang-format version
26
+ run: clang-format --version
27
28
- name: install pypi-packaged dependencies
29
run: sudo pip3 install graphviz build
src/malloc_tree_node.cpp
@@ -139,7 +139,7 @@ void MallocTreeNode::collect_stats_recursively_JSON(std::string& out)
139
140
void MallocTreeNode::collect_stats_recursively_HUMANFRIENDLY(std::string& out)
141
{
142
- std::string b((m_nTreeLevel)*2, ' ');
+ std::string b((m_nTreeLevel) * 2, ' ');
143
std::string i((m_nTreeLevel + 1) * 2, ' ');
144
145
float w = get_total_weight_percentage();
0 commit comments