fix a stray semicolon
This commit is contained in:
parent
1715559f82
commit
7be171db70
1 changed files with 1 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ impl Config {
|
|||
pub fn lldb_version_to_int(version_string: &str) -> isize {
|
||||
let error_string = format!("Encountered LLDB version string with unexpected format: {}",
|
||||
version_string);
|
||||
version_string.parse().expect(&error_string);
|
||||
version_string.parse().expect(&error_string)
|
||||
}
|
||||
|
||||
fn expand_variables(mut value: String, config: &Config) -> String {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue