Skip to content

Commit

Permalink
Fix memory $ compile
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Apr 2, 2024
1 parent 9381aa7 commit c971dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion other/haxelib/hlmem/Memory.hx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Stats {
totCount += i.count;
totMem += i.mem;
var tpath = getPathStrings(mem, i.tl);
mem.log(Memory.withColor(i.count + " count, " + Memory.MB(i.mem) + " ", 33) + tpath.join(${Memory.withColor(' > ', 36)}));
mem.log(Memory.withColor(i.count + " count, " + Memory.MB(i.mem) + " ", 33) + tpath.join(Memory.withColor(' > ', 36)));
}
if( withSum )
mem.log("Total: "+totCount+" count, "+Memory.MB(totMem));
Expand Down

0 comments on commit c971dc9

Please sign in to comment.