27 lines
882 B
Diff
27 lines
882 B
Diff
From 701185dbce17a2f49334027ca3cb5788a5d06c6d Mon Sep 17 00:00:00 2001
|
|
From: Abseil Team <absl-team@google.com>
|
|
Date: Fri, 22 Jul 2022 12:41:32 -0700
|
|
Subject: [PATCH] Add missing include for std::unique_ptr
|
|
|
|
PiperOrigin-RevId: 462681925
|
|
Change-Id: Ic5610cb4124b7f60a00817ca2f1d52674b27c168
|
|
|
|
Conflict: NA
|
|
Reference: https://github.com/abseil/abseil-cpp/commit/701185dbce17a2f49334027ca3cb5788a5d06c6d
|
|
---
|
|
absl/status/internal/status_internal.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/absl/status/internal/status_internal.h b/absl/status/internal/status_internal.h
|
|
index 19a4a7aaa09..873eb5c245d 100644
|
|
--- a/absl/status/internal/status_internal.h
|
|
+++ b/absl/status/internal/status_internal.h
|
|
@@ -14,6 +14,7 @@
|
|
#ifndef ABSL_STATUS_INTERNAL_STATUS_INTERNAL_H_
|
|
#define ABSL_STATUS_INTERNAL_STATUS_INTERNAL_H_
|
|
|
|
+#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
|