Sophie

Sophie

distrib > Mageia > 9 > aarch64 > media > tainted-updates-src > by-pkgid > 53e82d52de6621aa4524e6ebb5d8f226 > files > 42

chromium-browser-stable-124.0.6367.60-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);