Skip to content

Commit

Permalink
nixd/Controller: default ignore nullptr AST (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
inclyc authored Jun 23, 2024
1 parent 74f013a commit 102de09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixd/include/nixd/Controller/Controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class Controller : public lspserver::LSPServer {

template <class T>
std::shared_ptr<NixTU> getTU(std::string File, lspserver::Callback<T> &Reply,
bool Ignore = false) {
bool Ignore = true) {
using lspserver::error;
std::lock_guard G(TUsLock);
if (!TUs.count(File)) [[unlikely]] {
Expand Down

0 comments on commit 102de09

Please sign in to comment.