Skip to content

Commit 7c89ffb

Browse files
authored
Merge pull request #17 from crlf0710/derive_eq
Add derive Eq to AugmentedScriptSet.
2 parents 9359ea6 + 1b174e2 commit 7c89ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mixed_script.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use unicode_script::{Script, ScriptExtension};
55
/// An Augmented script set, as defined by UTS 39
66
///
77
/// https://www.unicode.org/reports/tr39/#def-augmented-script-set
8-
#[derive(Copy, Clone, PartialEq, Debug, Hash)]
8+
#[derive(Copy, Clone, PartialEq, Debug, Hash, Eq)]
99
pub struct AugmentedScriptSet {
1010
/// The base ScriptExtension value
1111
pub base: ScriptExtension,

0 commit comments

Comments
 (0)