summaryrefslogtreecommitdiff
path: root/oryxc/src
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-04 20:33:17 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-04 20:33:17 +0100
commite151a862229dde1b2c2ab2c2673de4a1a6854483 (patch)
tree9ded177900bc219fc2f349db97419dfe6854e975 /oryxc/src
parent2a18c3b5841a8bd7ff1776c9801fd2d50e35ba10 (diff)
Cargofmt
Diffstat (limited to 'oryxc/src')
-rw-r--r--oryxc/src/compiler.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/oryxc/src/compiler.rs b/oryxc/src/compiler.rs
index 0d1c65d..3f5ca40 100644
--- a/oryxc/src/compiler.rs
+++ b/oryxc/src/compiler.rs
@@ -104,7 +104,8 @@ impl CompilerState {
}
}
-/// Initialize compiler state and drive all source files through the pipeline.
+/// Initialize compiler state and drive all source files through the
+/// pipeline.
pub fn start<T>(paths: T, flags: Flags)
where
T: IntoIterator<Item = OsString>,
@@ -238,7 +239,8 @@ fn worker_loop(
}
}
-/// Get next available job or steal from the global queue or peers if local queue is empty.
+/// Get next available job or steal from the global queue or peers if
+/// local queue is empty.
fn find_task(
localq: &Worker<Job>,
globalq: &Injector<Job>,