From 522438dd35ddf94e8f13ba7a0c68d1e318e7b2ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Thu, 20 Oct 2016 16:45:44 +0200 Subject: [PATCH] Remove `android_start!` --- components/servo/main.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/components/servo/main.rs b/components/servo/main.rs index ddba3b38f51..c0bc2164dc1 100644 --- a/components/servo/main.rs +++ b/components/servo/main.rs @@ -257,13 +257,6 @@ extern { } -// This macro must be used at toplevel because it defines a nested -// module, but macros can only accept identifiers - not paths - -// preventing the expansion of this macro within the android module -// without use of an additionl stub method or other hackery. -#[cfg(target_os = "android")] -android_start!(main); - #[cfg(target_os = "android")] mod android { extern crate android_glue;