From 50b877d1aab9f808b0639a7913a953161d8ab361 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Sun, 30 Apr 2023 18:13:55 +0200 Subject: [PATCH] Remove ignored unaligned_references exception. --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4b47c1ce..3c03ae53 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,8 +3,6 @@ //! The Redox OS Kernel is a microkernel that supports `x86_64` systems and //! provides Unix-like syscalls for primarily Rust applications -//TODO: fix the need to generate references to packed fields -#![allow(unaligned_references)] // Useful for adding comments about different branches #![allow(clippy::if_same_then_else)] // Useful in the syscall function -- GitLab