Skip to content

Commit

Permalink
[REFACT] Removed a redundant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Nov 30, 2024
1 parent d1a4bad commit 471d292
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion TinyTracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ std::string flagsToStr(ADDRINT oldFlags, ADDRINT flags)
const size_t max = sizeof(flag) / sizeof(flag[0]);
std::stringstream ss;
ss << "[";
size_t pos = 0;
for (size_t i = 0; i < max; i++) {
ADDRINT flagSet = flags & flag[i];
if (flagSet != (oldFlags & flag[i])) {
Expand Down

0 comments on commit 471d292

Please sign in to comment.