diff options
author | Corey Richardson <corey@octayn.net> | 2017-09-24 08:34:58 -0400 |
---|---|---|
committer | Graham Northup <grahamnorthup@yahoo.com> | 2017-09-24 19:01:22 -0400 |
commit | 959fed1d8435070e39bd7b87c1e908f79b65add9 (patch) | |
tree | 971920997b0ecb58a141ed1d30546cb58975e9ff /src/synth/mod.rs | |
parent | 7eef21b3b90898f4ef05fa4220fde608cf55c6ab (diff) |
Fix compiler warnings
Some minor stuff, mostly. The features have been stable since 1.20
Diffstat (limited to 'src/synth/mod.rs')
-rw-r--r-- | src/synth/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/mod.rs b/src/synth/mod.rs index b22e162..6ec55f1 100644 --- a/src/synth/mod.rs +++ b/src/synth/mod.rs @@ -1,3 +1,5 @@ +#![allow(non_upper_case_globals)] + use std::{iter, cmp, slice, mem, fmt}; use std::fmt::Debug; use std::error::Error; |