We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d89153 commit 428516cCopy full SHA for 428516c
lib/IDE/CompletionInstance.cpp
@@ -607,7 +607,7 @@ bool CompletionInstance::shouldCheckDependencies() const {
607
auto now = system_clock::now();
608
auto threshold = DependencyCheckedTimestamp +
609
seconds(Opts.DependencyCheckIntervalSecond);
610
- return threshold < now;
+ return threshold <= now;
611
}
612
613
void CompletionInstance::setOptions(CompletionInstance::Options NewOpts) {
0 commit comments