diff options
Diffstat (limited to 'oryxc/src')
| -rw-r--r-- | oryxc/src/intern.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oryxc/src/intern.rs b/oryxc/src/intern.rs index eea3cfa..5fb5cd0 100644 --- a/oryxc/src/intern.rs +++ b/oryxc/src/intern.rs @@ -6,7 +6,7 @@ use dashmap::DashMap; pub struct Interner<V, I> where V: Copy + Eq + Hash, - I: Copy + Into<usize>, + I: Copy + From<usize> + Into<usize>, { map: DashMap<V, I>, store: boxcar::Vec<V>, |