about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2020-03-10 23:49:45 +0000
committerJoshua Nelson <jyn514@gmail.com>2020-03-10 23:49:45 +0000
commit3477e67a92878adae48b975915cb7a5c21026cd4 (patch)
treecfeee5d3b84bee99130b74e91120c72c46d98e18 /src/liballoc
parent8212584c9ecdbd91736fc7a480fe3b7409b73477 (diff)
downloadrust-3477e67a92878adae48b975915cb7a5c21026cd4.tar.gz
rust-3477e67a92878adae48b975915cb7a5c21026cd4.zip
Allow vec.rs to be over 3000 lines :(
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 9f30ca29c03..b9bd0dd8a1e 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -1,3 +1,4 @@
+// ignore-tidy-filelength
 //! A contiguous growable array type with heap-allocated contents, written
 //! `Vec<T>`.
 //!