diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-05 16:34:20 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-05 16:44:35 +0200 |
| commit | 5a7a32a9bafbcc69077e7766451310ab5ece62bf (patch) | |
| tree | 29d5fc9ec380c2bd1b63bff1fd605408e8f53eea /src/syntax/ident.rs | |
| parent | 93eaafb236bba73cd72c8cd142279366b8afa0be (diff) | |
Streamline generic layouting primitives 🛫
Diffstat (limited to 'src/syntax/ident.rs')
| -rw-r--r-- | src/syntax/ident.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/ident.rs b/src/syntax/ident.rs index 5ab7c73c..f8c38cfb 100644 --- a/src/syntax/ident.rs +++ b/src/syntax/ident.rs @@ -10,7 +10,7 @@ use unicode_xid::UnicodeXID; /// `-` and `_` as starting and continuing characters. /// /// [Unicode Standard]: http://www.unicode.org/reports/tr31/ -#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] +#[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd)] pub struct Ident(pub String); impl Ident { |
