Sophie

Sophie

distrib > Mageia > 9 > aarch64 > media > tainted-updates-src > by-pkgid > 4eb324a2a4460275fcf246e252c1f08b > files > 37

chromium-browser-stable-125.0.6422.76-1.mga9.tainted.src.rpm

--- patch123/third_party/perfetto/src/tracing/core/id_allocator.h	2024-03-13 20:37:12.868339800 +0100
+++ patch123/third_party/perfetto/src/tracing/core/id_allocator.h.type	2024-03-22 15:15:41.743459583 +0100
@@ -63,10 +63,10 @@ class IdAllocator : public IdAllocatorGe
 
   // Tries to allocate `n` IDs. Returns a vector of `n` valid IDs or an empty
   // vector, if not enough IDs are available.
-  std::vector<T> AllocateMultiple(size_t n) {
+  std::vector<T> AllocateMultiple(std::size_t n) {
     std::vector<T> res;
     res.reserve(n);
-    for (size_t i = 0; i < n; i++) {
+    for (std::size_t i = 0; i < n; i++) {
       T id = Allocate();
       if (id) {
         res.push_back(id);