aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_thread/lib.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-06-24 11:11:42 -0400
committerSimon Sapin <simon.sapin@exyr.org>2019-07-05 16:53:02 +0200
commit43a75011be4429f0e69c65362c119f6ef5ec96d5 (patch)
tree89def8f552e4ef8c26c0103d1d117152299379b3 /components/layout_thread/lib.rs
parenta2b76b0169bbc7691fe2dc173ce7948ee1aca876 (diff)
downloadservo-43a75011be4429f0e69c65362c119f6ef5ec96d5.tar.gz
servo-43a75011be4429f0e69c65362c119f6ef5ec96d5.zip
Upgrade to rustc 1.37.0-nightly (088b98730 2019-07-03)
Diffstat (limited to 'components/layout_thread/lib.rs')
-rw-r--r--components/layout_thread/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/layout_thread/lib.rs b/components/layout_thread/lib.rs
index 3e76f02c69e..3d192f6bbe6 100644
--- a/components/layout_thread/lib.rs
+++ b/components/layout_thread/lib.rs
@@ -2,6 +2,9 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
+// Work around https://github.com/rust-lang/rust/issues/62132
+#![recursion_limit = "128"]
+
//! The layout thread. Performs layout on the DOM, builds display lists and sends them to be
//! painted.