summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/chunk-region.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chunk-region.cpp b/src/chunk-region.cpp
index e28cc041..a787b79b 100644
--- a/src/chunk-region.cpp
+++ b/src/chunk-region.cpp
@@ -195,7 +195,8 @@ auto chunk::make_pass_region(const pred& f, bool debug, ArrayView<Vector2i> posi
ret.time = timeline.currentFrameTime();
if (debug) [[unlikely]]
- DBG_nospace << "region: generating for " << _coord << " took " << fraction(1e3f*ret.time, 3) << " ms";
+ DBG_nospace << "region: generating for " << _coord
+ << " took " << fraction(1e3f * ret.time, 3) << " ms";
return ret;
}