From c2242dc76f1bdae82673c7136cf685d4c04b3ca4 Mon Sep 17 00:00:00 2001 From: Geobert Quach Date: Fri, 29 Jun 2018 08:08:53 +0100 Subject: [PATCH] Stray println --- src/windows_registry.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/windows_registry.rs b/src/windows_registry.rs index 84c2d84..cb35675 100644 --- a/src/windows_registry.rs +++ b/src/windows_registry.rs @@ -638,7 +638,6 @@ mod impl_ { .and_then(|key| key.query_str("15.0").ok()) .map(|path| { let path = PathBuf::from(path).join(r"Common7\IDE\devenv.exe"); - println!("*** path: {:?}", path); let mut tool = Tool::new(path); if target.contains("x86_64") { tool.env.push(("Platform".into(), "X64".into()));