Skip to content

Commit

Permalink
#1513: improve readability (operator precedence)
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed May 17, 2022
1 parent 985e388 commit 2749a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/utils/memory/memory_usage.cc
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ std::string PS::getName() {

std::size_t Mallinfo::getUsage() {
#if vt_check_enabled(mimalloc) || \
!defined(vt_has_mallinfo) && !defined(vt_has_mallinfo2)
(!defined(vt_has_mallinfo) && !defined(vt_has_mallinfo2))
return 0;
#else
#if defined(vt_has_mallinfo2)
Expand Down

0 comments on commit 2749a65

Please sign in to comment.