mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
vim-patch:9.0.0095: conditions are always true
Problem: Conditions are always true.
Solution: Remove useless conditions. (closes vim/vim#10802)
122dea7007
This commit is contained in:
@@ -3569,7 +3569,7 @@ term_again:
|
||||
// Are we at the start of a cpp base class declaration or
|
||||
// constructor initialization? XXX
|
||||
n = 0;
|
||||
if (curbuf->b_ind_cpp_baseclass != 0 && theline[0] != '{') {
|
||||
if (curbuf->b_ind_cpp_baseclass != 0) {
|
||||
n = cin_is_cpp_baseclass(&cache_cpp_baseclass);
|
||||
l = get_cursor_line_ptr();
|
||||
}
|
||||
|
Reference in New Issue
Block a user