Skip to content

Commit

Permalink
Fix compilation of eval under Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
puffnfresh committed Nov 4, 2024
1 parent 190d0d6 commit d711c7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libexpr/eval.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2834,7 +2834,9 @@ void EvalState::printStatistics()
#endif
#if HAVE_BOEHMGC
{GC_is_incremental_mode() ? "gcNonIncremental" : "gc", gcFullOnlyTime},
#ifndef _WIN32 // TODO implement
{GC_is_incremental_mode() ? "gcNonIncrementalFraction" : "gcFraction", gcFullOnlyTime / cpuTime},
#endif
#endif
};
topObj["envs"] = {
Expand Down

0 comments on commit d711c7e

Please sign in to comment.