Skip to content

Commit a58a281

Browse files
author
Jethro Beekman
committed
Don't ignore Debug profile on MSVC
Fixes #19
1 parent 0c29e4e commit a58a281

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)