Style: Replaces uses of 0/NULL by nullptr (C++11)
Using clang-tidy's `modernize-use-nullptr`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
This commit is contained in:
@ -301,7 +301,7 @@ bool EditorHelpSearch::Runner::_slice() {
|
||||
bool EditorHelpSearch::Runner::_phase_match_classes_init() {
|
||||
iterator_doc = EditorHelp::get_doc_data()->class_list.front();
|
||||
matches.clear();
|
||||
matched_item = NULL;
|
||||
matched_item = nullptr;
|
||||
match_highest_score = 0;
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user