From 7a11588ec245d0a49a5da3f7965121bcd70e4da0 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 9 Jun 2016 19:42:20 +0200 Subject: [PATCH] Impl RefFlags::with_permission_tracking() --- libimagref/src/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagref/src/flags.rs b/libimagref/src/flags.rs index 5a51b0c4..584a35f8 100644 --- a/libimagref/src/flags.rs +++ b/libimagref/src/flags.rs @@ -42,7 +42,7 @@ impl RefFlags { self } - pub fn with_permission_tracking(mut self, b: bool) -> RefFlags { + pub fn with_permission_tracking(self, b: bool) -> RefFlags { self.permission_tracking = b; self }