Remove non_snake_case warnings.

This commit is contained in:
Stephen Chung 2022-01-25 14:33:01 +08:00
parent aee35e5f20
commit 2dc1fea40a
7 changed files with 0 additions and 12 deletions

View File

@ -1,5 +1,4 @@
#![cfg(not(feature = "no_index"))]
#![allow(non_snake_case)]
use crate::engine::OP_EQUALS;
use crate::eval::{calc_index, calc_offset_len};

View File

@ -1,5 +1,3 @@
#![allow(non_snake_case)]
use crate::eval::calc_index;
use crate::plugin::*;
use crate::{

View File

@ -1,5 +1,4 @@
#![cfg(not(feature = "no_index"))]
#![allow(non_snake_case)]
use crate::eval::{calc_index, calc_offset_len};
use crate::plugin::*;

View File

@ -1,5 +1,3 @@
#![allow(non_snake_case)]
use crate::def_package;
use crate::plugin::*;
#[cfg(feature = "no_std")]

View File

@ -1,5 +1,3 @@
#![allow(non_snake_case)]
use crate::plugin::*;
use crate::{def_package, FnPtr, INT};
use std::fmt::{Binary, LowerHex, Octal};

View File

@ -1,5 +1,3 @@
#![allow(non_snake_case)]
use crate::plugin::*;
use crate::{def_package, Dynamic, ExclusiveRange, InclusiveRange, RhaiResultOf, StaticVec, INT};
#[cfg(feature = "no_std")]

View File

@ -1,5 +1,3 @@
#![cfg(not(feature = "no_std"))]
use super::arithmetic::make_err as make_arithmetic_err;
use crate::plugin::*;
use crate::{def_package, Dynamic, EvalAltResult, RhaiResult, RhaiResultOf, INT};