mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 06:40:06 -04:00
Remove work-around for unsafe in puffin macro (#4484)
…since it is no longer in the puffin macro
This commit is contained in:
@@ -371,8 +371,6 @@
|
|||||||
|
|
||||||
#![allow(clippy::float_cmp)]
|
#![allow(clippy::float_cmp)]
|
||||||
#![allow(clippy::manual_range_contains)]
|
#![allow(clippy::manual_range_contains)]
|
||||||
#![cfg_attr(feature = "puffin", deny(unsafe_code))]
|
|
||||||
#![cfg_attr(not(feature = "puffin"), forbid(unsafe_code))]
|
|
||||||
|
|
||||||
mod animation_manager;
|
mod animation_manager;
|
||||||
pub mod containers;
|
pub mod containers;
|
||||||
|
|||||||
@@ -10,8 +10,6 @@
|
|||||||
|
|
||||||
#![allow(clippy::float_cmp)]
|
#![allow(clippy::float_cmp)]
|
||||||
#![allow(clippy::manual_range_contains)]
|
#![allow(clippy::manual_range_contains)]
|
||||||
#![cfg_attr(feature = "puffin", deny(unsafe_code))]
|
|
||||||
#![cfg_attr(not(feature = "puffin"), forbid(unsafe_code))]
|
|
||||||
|
|
||||||
mod demo;
|
mod demo;
|
||||||
pub mod easy_mark;
|
pub mod easy_mark;
|
||||||
|
|||||||
@@ -8,8 +8,6 @@
|
|||||||
|
|
||||||
#![allow(clippy::float_cmp)]
|
#![allow(clippy::float_cmp)]
|
||||||
#![allow(clippy::manual_range_contains)]
|
#![allow(clippy::manual_range_contains)]
|
||||||
#![cfg_attr(feature = "puffin", deny(unsafe_code))]
|
|
||||||
#![cfg_attr(not(feature = "puffin"), forbid(unsafe_code))]
|
|
||||||
|
|
||||||
#[cfg(feature = "chrono")]
|
#[cfg(feature = "chrono")]
|
||||||
mod datepicker;
|
mod datepicker;
|
||||||
|
|||||||
@@ -20,8 +20,6 @@
|
|||||||
//!
|
//!
|
||||||
|
|
||||||
#![allow(clippy::float_cmp)]
|
#![allow(clippy::float_cmp)]
|
||||||
#![cfg_attr(feature = "puffin", deny(unsafe_code))]
|
|
||||||
#![cfg_attr(not(feature = "puffin"), forbid(unsafe_code))]
|
|
||||||
|
|
||||||
use std::ops::{Add, Div, Mul, RangeInclusive, Sub};
|
use std::ops::{Add, Div, Mul, RangeInclusive, Sub};
|
||||||
|
|
||||||
|
|||||||
@@ -22,8 +22,6 @@
|
|||||||
|
|
||||||
#![allow(clippy::float_cmp)]
|
#![allow(clippy::float_cmp)]
|
||||||
#![allow(clippy::manual_range_contains)]
|
#![allow(clippy::manual_range_contains)]
|
||||||
#![cfg_attr(feature = "puffin", deny(unsafe_code))]
|
|
||||||
#![cfg_attr(not(feature = "puffin"), forbid(unsafe_code))]
|
|
||||||
|
|
||||||
mod bezier;
|
mod bezier;
|
||||||
pub mod color;
|
pub mod color;
|
||||||
|
|||||||
Reference in New Issue
Block a user