From 6a88b407715315e99b372baa82a01f26608091dc Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Mon, 20 Nov 2017 13:53:50 -0800 Subject: Changes imported from Abseil "staging" branch: - cdaf98233a24b0ea992224e4cca526c72c8c2079 Qualify documented code examples with absl namespace. by Alex Strelnikov GitOrigin-RevId: cdaf98233a24b0ea992224e4cca526c72c8c2079 Change-Id: I8b53dc15adc041cd2ce40ed7ffafc148d38a4912 --- absl/numeric/int128.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/absl/numeric/int128.h b/absl/numeric/int128.h index 8eca1e92..aeca3be9 100644 --- a/absl/numeric/int128.h +++ b/absl/numeric/int128.h @@ -71,12 +71,12 @@ namespace absl { // // Example: // -// float y = kuint128max; // Error. uint128 cannot be implicitly converted -// // to float. +// float y = absl::kuint128max; // Error. uint128 cannot be implicitly +// // converted to float. // -// uint128 v; -// uint64_t i = v // Error -// uint64_t i = static_cast(v) // OK +// absl::uint128 v; +// absl::uint64_t i = v; // Error +// absl::uint64_t i = static_cast(v); // OK // class alignas(16) uint128 { public: -- cgit v1.2.3