about summary refs log tree commit diff
path: root/src/libstd/priority_queue.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2013-01-17 23:28:42 -0800
committerBrian Anderson <banderson@mozilla.com>2013-01-17 23:28:42 -0800
commit6b6acde972bfd646e5b8a3eeaabd613c44d1028c (patch)
tree1057dd2b7728eb3a37a7d0ed222c847329501578 /src/libstd/priority_queue.rs
parent1244c0b6fd8325e1eab274e6d9b989e1ee1e2c57 (diff)
downloadrust-6b6acde972bfd646e5b8a3eeaabd613c44d1028c.tar.gz
rust-6b6acde972bfd646e5b8a3eeaabd613c44d1028c.zip
Add a license check to tidy. #4018
Diffstat (limited to 'src/libstd/priority_queue.rs')
-rw-r--r--src/libstd/priority_queue.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libstd/priority_queue.rs b/src/libstd/priority_queue.rs
index 4d341d737f6..b9c040de42a 100644
--- a/src/libstd/priority_queue.rs
+++ b/src/libstd/priority_queue.rs
@@ -1,3 +1,12 @@
+// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
 
 //! A priority queue implemented with a binary heap