forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/6.0'
Conflicts: src/plugins/coreplugin/editormanager/editormanager.cpp Change-Id: I80fe565749ad5c06dfe99436f2dc6ab4b66a2537
This commit is contained in:
@@ -78,7 +78,7 @@ elseif(MSVC)
|
||||
set(big_obj_compile_option "/bigobj")
|
||||
endif()
|
||||
|
||||
extend_qtc_plugin(ClangCodeModel
|
||||
CONDITION DEFINED big_obj_compile_option
|
||||
PROPERTIES COMPILE_OPTIONS ${big_obj_compile_option}
|
||||
)
|
||||
if(big_obj_compile_option AND TARGET ClangCodeModel)
|
||||
set_property(TARGET ClangCodeModel
|
||||
APPEND PROPERTY COMPILE_OPTIONS ${big_obj_compile_option})
|
||||
endif()
|
||||
|
||||
@@ -2781,6 +2781,7 @@ void ClangdClient::Private::handleSemanticTokens(TextDocument *doc,
|
||||
<< version << q->documentVersion(doc->filePath());
|
||||
return;
|
||||
}
|
||||
force = force || isTesting;
|
||||
const auto previous = previousTokens.find(doc);
|
||||
if (previous != previousTokens.end()) {
|
||||
if (!force && previous->first == tokens && previous->second == version) {
|
||||
|
||||
Reference in New Issue
Block a user