summaryrefslogtreecommitdiff
path: root/src/locale.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2018-12-07 14:58:11 +0100
committerChristian Duerr <chrisduerr@users.noreply.github.com>2018-12-07 13:58:11 +0000
commita6764ba05fee785186166c0710b08eb2a5ae302c (patch)
treea892e58d33619d142a89c874884875a159db94ee /src/locale.rs
parentcdc22ce76a8b191bfe9dbd1ef55e24ef37ac001d (diff)
downloadalacritty-a6764ba05fee785186166c0710b08eb2a5ae302c.tar.gz
alacritty-a6764ba05fee785186166c0710b08eb2a5ae302c.zip
Use tool lints for clippy allow/deny lint attributes
Diffstat (limited to 'src/locale.rs')
-rw-r--r--src/locale.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale.rs b/src/locale.rs
index 833de71e..81904f79 100644
--- a/src/locale.rs
+++ b/src/locale.rs
@@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
-#![cfg_attr(feature = "cargo-clippy", allow(let_unit_value))]
+#![allow(clippy::let_unit_value)]
#![cfg(target_os = "macos")]
use libc::{LC_CTYPE, setlocale};
use std::ffi::{CString, CStr};