sstudioer 发表于 2021-02-11 18:42
#[allow(dead_code)] 这个只能单项屏蔽警告.
如何才能全局关闭这种 警告 提示.
thanks;
-- 👇 snylonue: ``` #![allow(warnings, unused)]
关闭全部警告
#![allow(warnings, unused)]
我想全部关闭, 因为学习阶段, 大量定义未用;
-- 👇 93996817: ``` 试试这个 #![allow(dead_code)]
试试这个 #![allow(dead_code)]
评论区
写评论thanks;
--
👇
snylonue: ``` #![allow(warnings, unused)]
关闭全部警告
我想全部关闭, 因为学习阶段, 大量定义未用;
--
👇
93996817: ``` 试试这个 #![allow(dead_code)]