about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-04-26 12:46:28 -0500
committerMark Mansi <markm@cs.wisc.edu>2018-04-26 12:46:28 -0500
commit20ef0e001a1620436073d01f43a4a462d1967902 (patch)
treea76b8095d569fbb00b35dba04b4c0dfa6881ed05 /src/liballoc
parenta2105b8e21a71f513e6840ec0571cad5c1a36012 (diff)
downloadrust-20ef0e001a1620436073d01f43a4a462d1967902.tar.gz
rust-20ef0e001a1620436073d01f43a4a462d1967902.zip
make Vec::new const :P
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 757606607bb..1d95f76fd77 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -322,7 +322,7 @@ impl<T> Vec<T> {
     /// ```
     #[inline]
     #[stable(feature = "rust1", since = "1.0.0")]
-    pub fn new() -> Vec<T> {
+    pub const fn new() -> Vec<T> {
         Vec {
             buf: RawVec::empty(),
             len: 0,