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 55b5a77 commit 392dc96Copy full SHA for 392dc96
src/lib.rs
@@ -946,6 +946,8 @@ impl Config {
946
Ok(VsVers::Vs16) => "Visual Studio 16 2019",
947
Ok(VsVers::Vs15) => "Visual Studio 15 2017",
948
Ok(VsVers::Vs14) => "Visual Studio 14 2015",
949
+ // This was deprecated recently (2024-07). Ignore the warning for now.
950
+ #[allow(deprecated)]
951
Ok(VsVers::Vs12) => "Visual Studio 12 2013",
952
Ok(_) => panic!(
953
"Visual studio version detected but this crate \
0 commit comments