remove colons from feature names

This commit is contained in:
Mark McCaskey
2019-07-09 17:57:31 -07:00
parent 4752492974
commit 2ef7448e62
5 changed files with 21 additions and 21 deletions

View File

@ -33,9 +33,9 @@ impl Backend {
pub fn variants() -> &'static [&'static str] {
&[
"cranelift",
#[cfg(feature = "backend:singlepass")]
#[cfg(feature = "backend-singlepass")]
"singlepass",
#[cfg(feature = "backend:llvm")]
#[cfg(feature = "backend-llvm")]
"llvm",
]
}