Skip to content

Commit be5653c

Browse files
committed
Suppress expl_impl_clone_on_copy pedantic lint in custom tokens
1 parent 92b1129 commit be5653c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/custom_keyword.rs

+1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ macro_rules! impl_clone_for_custom_keyword {
198198
($ident:ident) => {
199199
impl $crate::__private::Copy for $ident {}
200200

201+
#[allow(clippy::expl_impl_clone_on_copy)]
201202
impl $crate::__private::Clone for $ident {
202203
fn clone(&self) -> Self {
203204
*self

src/custom_punctuation.rs

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ macro_rules! impl_clone_for_custom_punctuation {
169169
($ident:ident, $($tt:tt)+) => {
170170
impl $crate::__private::Copy for $ident {}
171171

172+
#[allow(clippy::expl_impl_clone_on_copy)]
172173
impl $crate::__private::Clone for $ident {
173174
fn clone(&self) -> Self {
174175
*self

0 commit comments

Comments
 (0)