From 5d1f1cf9dd9455b9ff41fa3e6009f9c40feaf2f2 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Mon, 12 Jun 2023 12:13:38 -0700 Subject: Adding more support and testing for int128 and uint128 flags from cl/534444213 PiperOrigin-RevId: 539726003 Change-Id: Ie38f8d48a7b4c9d498fc1c4c4af6138048f80f68 --- absl/flags/marshalling.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'absl/flags/marshalling.h') diff --git a/absl/flags/marshalling.h b/absl/flags/marshalling.h index 21d955d5..301213a9 100644 --- a/absl/flags/marshalling.h +++ b/absl/flags/marshalling.h @@ -313,6 +313,8 @@ std::string Unparse(long v); // NOLINT std::string Unparse(unsigned long v); // NOLINT std::string Unparse(long long v); // NOLINT std::string Unparse(unsigned long long v); // NOLINT +std::string Unparse(absl::int128 v); +std::string Unparse(absl::uint128 v); std::string Unparse(float v); std::string Unparse(double v); -- cgit v1.2.3