Skip to content

Commit

Permalink
Merge pull request #23 from c410-f3r/patch-1
Browse files Browse the repository at this point in the history
Effectively make this project `no_std`
  • Loading branch information
droundy authored Sep 9, 2022
2 parents d2bf9b4 + ae7ae54 commit 827857d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ macro_rules! array_ref {
macro_rules! array_refs {
( $arr:expr, $( $pre:expr ),* ; .. ; $( $post:expr ),* ) => {{
{
use std::slice;
use core::slice;
#[inline]
#[allow(unused_assignments)]
#[allow(clippy::eval_order_dependence)]
Expand Down Expand Up @@ -202,7 +202,7 @@ macro_rules! array_refs {
macro_rules! mut_array_refs {
( $arr:expr, $( $pre:expr ),* ; .. ; $( $post:expr ),* ) => {{
{
use std::slice;
use core::slice;
#[inline]
#[allow(unused_assignments)]
#[allow(clippy::eval_order_dependence)]
Expand Down

0 comments on commit 827857d

Please sign in to comment.