Skip to content

Commit 3f1e391

Browse files
committed
Exclude manually arranged ascii tables from rustfmt
1 parent 41601a8 commit 3f1e391

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libcore/benches/ascii.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ const LONG: &'static str = repeat!(r#"
277277
The Manlet (1903)[106]
278278
"#);
279279

280+
#[rustfmt::skip]
280281
const ASCII_UPPERCASE_MAP: [u8; 256] = [
281282
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
282283
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
@@ -330,6 +331,7 @@ enum AsciiCharacterClass {
330331
}
331332
use self::AsciiCharacterClass::*;
332333

334+
#[rustfmt::skip]
333335
static ASCII_CHARACTER_CLASS: [AsciiCharacterClass; 256] = [
334336
// _0 _1 _2 _3 _4 _5 _6 _7 _8 _9 _a _b _c _d _e _f
335337
C, C, C, C, C, C, C, C, C, Cw,Cw,C, Cw,Cw,C, C, // 0_

0 commit comments

Comments
 (0)