diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2016-06-23 16:02:33 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2016-06-23 16:13:49 +0200 |
commit | f7f81e0ed0b62402db291e28a9bb16f7194ebf78 (patch) | |
tree | 56aee814aa967d2453d983822e3dae33c7c75fe2 /python/tidy/servo_tidy | |
parent | 0fb5d634a007f3d0424f95569ac3f83d500d054c (diff) | |
download | servo-f7f81e0ed0b62402db291e28a9bb16f7194ebf78.tar.gz servo-f7f81e0ed0b62402db291e28a9bb16f7194ebf78.zip |
Use our copy of RefCell for style data.
This allows removing `#![feature(as_unsafe_cell)]` in geckolib
and make progress towards #11815.
Diffstat (limited to 'python/tidy/servo_tidy')
-rw-r--r-- | python/tidy/servo_tidy/licenseck.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/licenseck.py b/python/tidy/servo_tidy/licenseck.py index a67713b4421..ce5fdee075d 100644 --- a/python/tidy/servo_tidy/licenseck.py +++ b/python/tidy/servo_tidy/licenseck.py @@ -69,5 +69,16 @@ licenses = [ // <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. -""" +""", + +"""\ +// Copyright 2012-2014 The Rust Project Developers. +// See 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. +""", ] # noqa: Indicate to flake8 that we do not want to check indentation here |