Skip to content

Commit

Permalink
fix for statement of dump API
Browse files Browse the repository at this point in the history
  • Loading branch information
smithAchang committed Sep 16, 2023
1 parent d065069 commit eba85a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ACE/ace/Malloc_T.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,9 @@ ACE_Cascaded_Dynamic_Cached_Allocator<ACE_LOCK>::dump () const
ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("initial_n_chunks_ = %u\n"), this->initial_n_chunks_));
ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("chunk_size_ = %u\n"), this->chunk_size_));

for (size_t c = 0; c < hierarchy_.size (); c++)
for (size_t c = 0;
c < hierarchy_.size ();
c++)
{
hierarchy_[c]->dump ();
ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
Expand Down

0 comments on commit eba85a4

Please sign in to comment.