From 959ce482dd9f2f8c469964b8c258bd3e45f7ca2b Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 18 Oct 2017 13:38:07 +0200 Subject: =?UTF-8?q?Stop=20relying=20on=20linking=20details=20of=20std?= =?UTF-8?q?=E2=80=99s=20default=20allocator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We’ve been bitten before by symbol names changing: https://github.com/servo/heapsize/pull/46 and upstream is planning to stop using jemalloc by default: https://github.com/rust-lang/rust/issues/33082#issuecomment-309781465 So use the (relatively) new `#[global_allocator]` attribute to explicitly select the system allocator on Windows and jemalloc (now in an external crate) on other platforms. This choice matches current defaults. --- python/tidy/servo_tidy/tidy.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'python/tidy/servo_tidy/tidy.py') diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index f9571298562..1336c4d0b56 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -626,6 +626,10 @@ def check_rust(file_name, lines): + decl_found.format(crate_name)) prev_crate[indent] = crate_name + if line == "}": + for i in [i for i in prev_crate.keys() if i > indent]: + del prev_crate[i] + # check alphabetical order of feature attributes in lib.rs files if is_lib_rs_file: match = re.search(r"#!\[feature\((.*)\)\]", line) -- cgit v1.2.3