Skip to content

Commit 36c290e

Browse files
juergwcopybara-github
authored andcommitted
Fix some includes.
PiperOrigin-RevId: 766655767 Change-Id: I69149a3a2f97fbc4ae15434380a42070c0377e61
1 parent 8ee7bea commit 36c290e

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

tink/cc/BUILD.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ cc_library(
210210
hdrs = ["input_stream_adapter.h"],
211211
include_prefix = "tink/cc",
212212
deps = [
213-
"@com_google_absl//absl/status",
214213
"@com_google_absl//absl/status:statusor",
215214
"@com_google_absl//absl/strings",
216215
"@tink_cc//tink:input_stream",
@@ -224,8 +223,8 @@ cc_test(
224223
deps = [
225224
":input_stream_adapter",
226225
"@com_google_absl//absl/memory",
226+
"@com_google_absl//absl/status",
227227
"@com_google_googletest//:gtest_main",
228-
"@tink_cc//tink:input_stream",
229228
"@tink_cc//tink/subtle:random",
230229
"@tink_cc//tink/util:istream_input_stream",
231230
],

tink/cc/input_stream_adapter.cc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@
1717
#include "tink/cc/input_stream_adapter.h"
1818

1919
#include <algorithm>
20+
#include <cstdint>
2021
#include <string>
2122

22-
#include "absl/strings/str_cat.h"
23+
#include "absl/status/statusor.h"
2324
#include "absl/strings/string_view.h"
24-
#include "tink/util/status.h"
25-
#include "tink/util/statusor.h"
2625

2726
namespace crypto {
2827
namespace tink {

tink/cc/input_stream_adapter_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
#include "tink/cc/input_stream_adapter.h"
1818

19-
#include <algorithm>
19+
#include <memory>
2020
#include <sstream>
2121
#include <string>
2222
#include <utility>
2323

2424
#include "gtest/gtest.h"
2525
#include "absl/memory/memory.h"
26-
#include "tink/input_stream.h"
26+
#include "absl/status/status.h"
2727
#include "tink/subtle/random.h"
2828
#include "tink/util/istream_input_stream.h"
2929

0 commit comments

Comments
 (0)