Skip to content

Commit

Permalink
Convert task into regular comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jan 9, 2022
1 parent 23e327c commit 416df5f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ fn main() -> anyhow::Result<()> {
parameters.insert(key, value);
}

// TASK: Since we're loading the model before setting up the watcher below,
// there's a race condition, and a modification could be missed
// between those two events.
// Since we're loading the model before setting up the watcher below,
// there's a race condition, and a modification could be missed between
// those two events.
//
// This can't be addressed with the current structure, since the
// watcher closure takes ownership of the model.
// This can't be addressed with the current structure, since the watcher
// closure takes ownership of the model.
let shape = model.load(&parameters)?;

let mut aabb = shape.bounding_volume();
Expand Down

0 comments on commit 416df5f

Please sign in to comment.