From 142a6d903b69b84f82f12e84ffc754f2dc816a6b Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Wed, 5 Oct 2022 02:16:44 +0200 Subject: [PATCH] removed pedantic flag --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 652f46e..9fd8ba0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -89,7 +89,7 @@ fn compilation_args() -> Vec { "-Wall".to_string(), "-Wextra".to_string(), "-std=c99".to_string(), - "-pedantic".to_string(), + // "-pedantic".to_string(), ]; if Config::get_local_or_default().strict_mode() { args.push("-Werror".to_string());