Skip to content

Commit

Permalink
Fix some missing includes/dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeller committed Jan 29, 2024
1 parent b64dcf0 commit 1d212d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions verilog/analysis/verilog_project.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <vector>

#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_join.h"
#include "absl/strings/string_view.h"
Expand Down
1 change: 1 addition & 0 deletions verilog/tools/ls/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ cc_test(
deps = [
":lsp-parse-buffer",
"//common/lsp:lsp-text-buffer",
"//common/text:text-structure",
"@com_google_absl//absl/strings",
"@com_google_googletest//:gtest_main",
],
Expand Down
2 changes: 2 additions & 0 deletions verilog/tools/ls/lsp-parse-buffer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@

#include "verilog/tools/ls/lsp-parse-buffer.h"

#include "absl/strings/match.h"
#include "common/lsp/lsp-text-buffer.h"
#include "common/text/text_structure.h"
#include "gtest/gtest.h"

namespace verilog {
Expand Down

0 comments on commit 1d212d3

Please sign in to comment.