diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-07-13 00:57:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 00:57:35 -0700 |
commit | 902e6322e0d8768acf5349d20e1328e6b15a446c (patch) | |
tree | 09fdfbc57c4aa97a356ef950d0d36ca994535b78 /components/script/lib.rs | |
parent | 5d98ee61bbdb76e179bc62c0366438e28abe79a9 (diff) | |
parent | 87800fa902115b92f145bba2374932d5f6ac4093 (diff) | |
download | servo-902e6322e0d8768acf5349d20e1328e6b15a446c.tar.gz servo-902e6322e0d8768acf5349d20e1328e6b15a446c.zip |
Auto merge of #12419 - GuillaumeGomez:try_from, r=Ms2ger
Replace AdjacentPosition::parse by TryFrom
Fixes #12387.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12419)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index ebc5b4a1686..2744115aff1 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -19,6 +19,7 @@ #![feature(slice_patterns)] #![feature(stmt_expr_attributes)] #![feature(question_mark)] +#![feature(try_from)] #![deny(unsafe_code)] #![allow(non_snake_case)] |