Actually generate AppliedPatchSet objects (#250)

* Start actually computing AppliedPatchSet values

* Improve patch_apply documentation and flesh out applied patch code

* Add file link notes

* Stub out where tests for snapshot subsystem will go

* Create baseline tests

* Fix build failure by silencing Clippy
This commit is contained in:
Lucien Greathouse
2019-09-27 15:07:11 -07:00
committed by GitHub
parent a70b7ee150
commit e741f7b557
7 changed files with 190 additions and 33 deletions

View File

@@ -51,6 +51,9 @@ impl ChangeProcessor {
imfs.change_receiver()
};
// Crossbeam's select macro generates code that Clippy doesn't like, and
// Clippy blames us for it.
#[allow(clippy::drop_copy)]
loop {
select! {
recv(imfs_receiver) -> event => {