Export of internal Abseil changes
-- 0e867881e4b9f388a13d6fa8ed715192460130ab by Abseil Team <absl-team@google.com>: Minor wording change to header comment for Mutex::AwaitWithDeadline(). No functional changes. PiperOrigin-RevId: 306729491 -- fc64361fb831003fa5e6fbb84a9a89338fd2838c by Derek Mauro <dmauro@google.com>: Uses C++20 compatible allocator traits in Abseil types This merges both instances of CountingAllocator in the Abseil codebase. Makes the presubmits test C++20 mode. Fixes #651 PiperOrigin-RevId: 306728102 -- d759e5681b9dd6b7339fc019ed58fb5fdececdc3 by Derek Mauro <dmauro@google.com>: Makes btree's iterator comparisons C++20 compatible See https://stackoverflow.com/questions/60386792/c20-comparison-warning-about-ambiguous-reversed-operator PiperOrigin-RevId: 306702048 -- e9da5f409bc5ddb1bad308f9d8c41213c67a1d1e by Derek Mauro <dmauro@google.com>: Switch a few uses of at() that should have been data() in the implementation of InlinedVector. Use ABSL_HARDENING_ASSERT in resize(). PiperOrigin-RevId: 306670992 GitOrigin-RevId: 0e867881e4b9f388a13d6fa8ed715192460130ab Change-Id: If431f3e5d77097e9901654773552dcc01dface87
This commit is contained in:
		
							parent
							
								
									71079e42cb
								
							
						
					
					
						commit
						db5773a721
					
				
					 13 changed files with 90 additions and 108 deletions
				
			
		|  | @ -106,13 +106,13 @@ class FixedArray { | |||
| 
 | ||||
|  public: | ||||
|   using allocator_type = typename AllocatorTraits::allocator_type; | ||||
|   using value_type = typename allocator_type::value_type; | ||||
|   using pointer = typename allocator_type::pointer; | ||||
|   using const_pointer = typename allocator_type::const_pointer; | ||||
|   using reference = typename allocator_type::reference; | ||||
|   using const_reference = typename allocator_type::const_reference; | ||||
|   using size_type = typename allocator_type::size_type; | ||||
|   using difference_type = typename allocator_type::difference_type; | ||||
|   using value_type = typename AllocatorTraits::value_type; | ||||
|   using pointer = typename AllocatorTraits::pointer; | ||||
|   using const_pointer = typename AllocatorTraits::const_pointer; | ||||
|   using reference = value_type&; | ||||
|   using const_reference = const value_type&; | ||||
|   using size_type = typename AllocatorTraits::size_type; | ||||
|   using difference_type = typename AllocatorTraits::difference_type; | ||||
|   using iterator = pointer; | ||||
|   using const_iterator = const_pointer; | ||||
|   using reverse_iterator = std::reverse_iterator<iterator>; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue