1Upstream-Status: Pending 2 3Description: Add missing 'std::' scope identifiers. 4Forwarded: not-needed 5--- a/system/core/libunwindstack/include/unwindstack/DwarfMemory.h 6+++ b/system/core/libunwindstack/include/unwindstack/DwarfMemory.h 7@@ -29,7 +29,7 @@ 8 DwarfMemory(Memory* memory) : memory_(memory) {} 9 virtual ~DwarfMemory() = default; 10 11- bool ReadBytes(void* dst, size_t num_bytes); 12+ bool ReadBytes(void* dst, std::size_t num_bytes); 13 14 template <typename SignedType> 15 bool ReadSigned(uint64_t* value); 16@@ -39,7 +39,7 @@ 17 bool ReadSLEB128(int64_t* value); 18 19 template <typename AddressType> 20- size_t GetEncodedSize(uint8_t encoding); 21+ std::size_t GetEncodedSize(uint8_t encoding); 22 23 bool AdjustEncodedValue(uint8_t encoding, uint64_t* value); 24 25