Skip to content

Commit 2f23b06

Browse files
authored
Indent IFDEFs in Metric.hs
1 parent 4bdb9df commit 2f23b06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

System/Metrics.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ getGcStats = do
445445

446446
-- | Empty GC statistics, as if the application hasn't started yet.
447447
emptyGCStats :: Stats.GCStats
448-
#if MIN_VERSION_base(4,10,0)
448+
# if MIN_VERSION_base(4,10,0)
449449
emptyGCStats = Stats.GCStats
450450
{ bytesAllocated = 0
451451
, numGcs = 0
@@ -467,7 +467,7 @@ emptyGCStats = Stats.GCStats
467467
, parMaxBytesCopied = 0
468468
, mblocksAllocated = 0
469469
}
470-
#else
470+
# else
471471
emptyGCStats = Stats.GCStats
472472
{ bytesAllocated = 0
473473
, numGcs = 0
@@ -488,7 +488,7 @@ emptyGCStats = Stats.GCStats
488488
, parTotBytesCopied = 0
489489
, parMaxBytesCopied = 0
490490
}
491-
#endif
491+
# endif
492492
#else
493493
getGcStats = Stats.getGCStats
494494
#endif

0 commit comments

Comments
 (0)