##// END OF EJS Templates
rust: avoid redundant 'static lifetime...
Gregory Szorc -
r35625:24b5106e default
parent child Browse files
Show More
@@ -84,7 +84,7 b' fn have_shared(config: &PythonConfig) ->'
84 84 return dll.exists();
85 85 }
86 86
87 const REQUIRED_CONFIG_FLAGS: [&'static str; 2] = ["Py_USING_UNICODE", "WITH_THREAD"];
87 const REQUIRED_CONFIG_FLAGS: [&str; 2] = ["Py_USING_UNICODE", "WITH_THREAD"];
88 88
89 89 fn main() {
90 90 let config = get_python_config();
General Comments 0
You need to be logged in to leave comments. Login now