Minor code style fix in ClangUserExpression.cpp [NFC]

llvm-svn: 359089
This commit is contained in:
Raphael Isemann 2019-04-24 12:55:00 +00:00
parent d30745b2a0
commit d59c8d3037
1 changed files with 1 additions and 2 deletions

View File

@ -432,9 +432,8 @@ void ClangUserExpression::UpdateLanguageForExpr(
std::size_t original_end;
bool found_bounds = source_code->GetOriginalBodyBounds(
m_transformed_text, m_expr_lang, original_start, original_end);
if (found_bounds) {
if (found_bounds)
m_user_expression_start_pos = original_start;
}
}
}