diff options
Diffstat (limited to 'compiler/utils')
-rw-r--r-- | compiler/utils/Util.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Util.hs b/compiler/utils/Util.hs index 03e0e58213..1c519ebeef 100644 --- a/compiler/utils/Util.hs +++ b/compiler/utils/Util.hs @@ -1345,7 +1345,7 @@ type HasCallStack = (() :: Constraint) #endif -- | A call stack constraint, but only when 'isDebugOn'. -#if DEBUG +#ifdef DEBUG type HasDebugCallStack = HasCallStack #else type HasDebugCallStack = (() :: Constraint) |