diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-11-05 17:00:49 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-11-21 13:18:08 -0800 |
| commit | 73622f8fdf905f273cf7509dcbcf9f7fb06f022a (patch) | |
| tree | 1d5b042df55da9b7b53b459ea21b28d2c1de3340 | |
| parent | f39c29d0bc0e58d76e2289dc52038770797a8f38 (diff) | |
| download | rust-73622f8fdf905f273cf7509dcbcf9f7fb06f022a.tar.gz rust-73622f8fdf905f273cf7509dcbcf9f7fb06f022a.zip | |
unicode: Remove unused `non_snake_case` allows.
| -rw-r--r-- | src/libunicode/u_char.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libunicode/u_char.rs b/src/libunicode/u_char.rs index 1c4c4d4c4be..369336639a7 100644 --- a/src/libunicode/u_char.rs +++ b/src/libunicode/u_char.rs @@ -176,7 +176,6 @@ pub trait UnicodeChar { /// 'XID_Start' is a Unicode Derived Property specified in /// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications), /// mostly similar to ID_Start but modified for closure under NFKx. - #[allow(non_snake_case)] fn is_xid_start(self) -> bool; /// Returns whether the specified `char` satisfies the 'XID_Continue' @@ -195,7 +194,6 @@ pub trait UnicodeChar { /// 'XID_Continue' is a Unicode Derived Property specified in /// [UAX #31](http://unicode.org/reports/tr31/#NFKC_Modifications), /// mostly similar to 'ID_Continue' but modified for closure under NFKx. - #[allow(non_snake_case)] fn is_xid_continue(self) -> bool; /// Indicates whether a character is in lowercase. |
