summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfaineance <faineance@users.noreply.github.com>2017-02-09 22:31:55 +0000
committerfaineance <faineance@users.noreply.github.com>2017-02-09 22:31:55 +0000
commit0db962b148e38cee515f1326ee9fcd4c97c143db (patch)
tree4b3f6b9afbf55e8cac712a27179f5c6397e7905a /src
parentbb98fbcc687f2420f0737d39dfa335b4af03e566 (diff)
remove underscore prefix from feature name
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 2b18f1ab..ea3da06d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -25,7 +25,7 @@ pub fn main() {
let bind_args: Vec<_> = env::args().collect();
let version = clang_version();
- let expected_version = if cfg!(feature = "__testing_only_llvm_stable") {
+ let expected_version = if cfg!(feature = "testing_only_llvm_stable") {
(3, 8)
} else {
(3, 9)