Skip to content

Commit 8633bbb

Browse files
committed
Fix formatting
1 parent 1dff45e commit 8633bbb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222

2323
- name: show g++ version
2424
run: g++ --version
25+
- name: show clang-format version
26+
run: clang-format --version
2527

2628
- name: install pypi-packaged dependencies
2729
run: sudo pip3 install graphviz build

src/malloc_tree_node.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ void MallocTreeNode::collect_stats_recursively_JSON(std::string& out)
139139

140140
void MallocTreeNode::collect_stats_recursively_HUMANFRIENDLY(std::string& out)
141141
{
142-
std::string b((m_nTreeLevel)*2, ' ');
142+
std::string b((m_nTreeLevel) * 2, ' ');
143143
std::string i((m_nTreeLevel + 1) * 2, ' ');
144144

145145
float w = get_total_weight_percentage();

0 commit comments

Comments
 (0)