From 76edb0542eb124212d5ed063f872683d91e67a5d Mon Sep 17 00:00:00 2001 From: Thomas Heck Date: Thu, 11 Jul 2019 00:03:07 +0200 Subject: [PATCH] use default allocator (system) --- src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index fd0b3a2..67e936d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,3 @@ -use std::alloc; use std::env; use std::path::Path; use std::{fs, io}; @@ -6,9 +5,6 @@ use std::{fs, io}; use ffmpeg_next::{self as ffmpeg, codec, filter, format, frame, media}; use rayon::prelude::*; -#[global_allocator] -static ALLOCATOR: alloc::System = alloc::System; - #[derive(Debug)] enum Error { Io(io::Error),