Skip to content

Commit

Permalink
Remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed May 8, 2015
1 parent 373303f commit a3d8a1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function diff_gc_num!(new::GC_Num, old::GC_Num)
new.total_allocd -= old.total_allocd
return new
end


# total time spend in garbage collection, in nanoseconds
gc_time_ns() = ccall(:jl_gc_total_hrtime, UInt64, ())
Expand Down Expand Up @@ -93,9 +93,9 @@ macro time(ex)
b0 = gc_bytes() - b0
s0 = diff_gc_num!(gc_num(), s0)
time_print(t0, b0,
s0.total_time,
s0.pause,
s0.full_sweep,
s0.total_time,
s0.pause,
s0.full_sweep,
s0.malloc + s0.realloc + s0.poolalloc)
val
end
Expand Down

0 comments on commit a3d8a1c

Please sign in to comment.