Skip to content

Commit d67e6ac

Browse files
authored
Merge pull request #30 from jethrogb/master
Don't ignore Debug profile on MSVC
2 parents 0c29e4e + a58a281 commit d67e6ac

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,6 @@ impl Config {
310310
let profile = self.profile.clone().unwrap_or_else(|| {
311311
match &getenv_unwrap("PROFILE")[..] {
312312
"bench" | "release" => "Release",
313-
// currently we need to always use the same CRT for MSVC
314-
_ if msvc => "Release",
315313
_ => "Debug",
316314
}.to_string()
317315
});

0 commit comments

Comments
 (0)