summaryrefslogtreecommitdiff
path: root/absl/flags/marshalling.h
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2023-06-12 12:13:38 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2023-06-12 12:14:13 -0700
commit5d1f1cf9dd9455b9ff41fa3e6009f9c40feaf2f2 (patch)
tree7f51e14b15bbc111f495a144357e97b4727e95ef /absl/flags/marshalling.h
parenta3d9a943253f596bd88538f18cc6b07aaba6d3c0 (diff)
Adding more support and testing for int128 and uint128 flags from cl/534444213
PiperOrigin-RevId: 539726003 Change-Id: Ie38f8d48a7b4c9d498fc1c4c4af6138048f80f68
Diffstat (limited to 'absl/flags/marshalling.h')
-rw-r--r--absl/flags/marshalling.h2
1 files changed, 2 insertions, 0 deletions
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);