From e72687a36635ccfce494f8807269bf897b3b6d7b Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 25 Apr 2017 11:09:51 -0500 Subject: [PATCH] fix build for thumbv6m --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 687e8ecf81..1d883301d1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -645,6 +645,7 @@ pub struct C { impl C { /// Raises the system ceiling to match the `resource` ceiling + #[cfg(not(thumbv6m))] pub fn raise(&self, _resource: &'static RES, f: F) -> R where RES: ResourceLike,