We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c14902 commit f2f8468Copy full SHA for f2f8468
intel-mkl-src/build.rs
@@ -20,7 +20,7 @@
20
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
// SOFTWARE.
22
23
-use anyhow::{bail, Result};
+use anyhow::Result;
24
use intel_mkl_tool::*;
25
use std::str::FromStr;
26
intel-mkl-tool/examples/seek.rs
@@ -14,5 +14,5 @@ fn main() -> ExitCode {
14
num_not_found += 1;
15
}
16
17
- return ExitCode::from(num_not_found);
+ ExitCode::from(num_not_found)
18
0 commit comments