Skip to content

Commit 2ee5ac7

Browse files
laramielcopybara-github
authored andcommitted
Minor include fixes
PiperOrigin-RevId: 729302265 Change-Id: I18f1e68e1a7555f64dcb144884ff8d6f3f6adfdb
1 parent e44753f commit 2ee5ac7

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

tensorstore/internal/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,16 @@ tensorstore_cc_library(
118118
hdrs = ["chunk_grid_specification.h"],
119119
deps = [
120120
":async_write_array",
121-
"//tensorstore:array",
122121
"//tensorstore:box",
123122
"//tensorstore:chunk_layout",
124123
"//tensorstore:contiguous_layout",
125124
"//tensorstore:data_type",
126125
"//tensorstore:index",
127126
"//tensorstore:index_interval",
128127
"//tensorstore:rank",
129-
"//tensorstore/index_space:index_transform",
130128
"//tensorstore/internal/cache",
129+
"//tensorstore/util:constant_vector",
130+
"//tensorstore/util:dimension_set",
131131
"//tensorstore/util:result",
132132
"//tensorstore/util:span",
133133
"//tensorstore/util:status",

tensorstore/internal/chunk_grid_specification.cc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@
1818
#include <stddef.h>
1919

2020
#include <algorithm>
21+
#include <numeric>
2122
#include <utility>
2223
#include <vector>
2324

24-
#include "absl/container/inlined_vector.h"
25-
#include "tensorstore/array.h"
2625
#include "tensorstore/box.h"
2726
#include "tensorstore/chunk_layout.h"
2827
#include "tensorstore/contiguous_layout.h"
2928
#include "tensorstore/index.h"
3029
#include "tensorstore/index_interval.h"
31-
#include "tensorstore/index_space/dimension_permutation.h"
3230
#include "tensorstore/internal/async_write_array.h"
3331
#include "tensorstore/rank.h"
32+
#include "tensorstore/util/constant_vector.h"
33+
#include "tensorstore/util/dimension_set.h"
34+
#include "tensorstore/util/result.h"
3435
#include "tensorstore/util/span.h"
3536
#include "tensorstore/util/status.h"
3637

tensorstore/proto/proto_binder.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "tensorstore/proto/proto_binder.h"
1616

1717
#include <string>
18+
#include <string_view>
1819
#include <type_traits>
1920
#include <utility>
2021

@@ -25,7 +26,6 @@
2526
#include "google/protobuf/text_format.h"
2627
#include "google/protobuf/util/json_util.h"
2728
#include "tensorstore/internal/json/value_as.h"
28-
#include "tensorstore/internal/json_binding/json_binding.h"
2929
#include "tensorstore/json_serialization_options_base.h"
3030
#include "tensorstore/proto/proto_util.h"
3131
#include "tensorstore/util/str_cat.h"

tensorstore/proto/proto_binder.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <type_traits>
1919

2020
#include "absl/status/status.h"
21+
#include <nlohmann/json_fwd.hpp>
2122
#include "google/protobuf/message.h"
2223
#include "tensorstore/internal/json_binding/json_binding.h"
2324
#include "tensorstore/json_serialization_options_base.h"

0 commit comments

Comments
 (0)