diff options
| author | Stefan Boberg <[email protected]> | 2025-03-06 17:27:59 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-03-06 17:27:59 +0100 |
| commit | 66e5d1f4e288e0c32f854ebe3b63584b42b83554 (patch) | |
| tree | d67e9d358419b5baccd429d54988414e0d7cd7a6 /src/zenhttp/testing | |
| parent | reduced memory churn using fixed_xxx containers (#236) (diff) | |
| download | zen-66e5d1f4e288e0c32f854ebe3b63584b42b83554.tar.xz zen-66e5d1f4e288e0c32f854ebe3b63584b42b83554.zip | |
switched std::vector -> eastl::vector
Diffstat (limited to 'src/zenhttp/testing')
| -rw-r--r-- | src/zenhttp/testing/httptest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/testing/httptest.cpp b/src/zenhttp/testing/httptest.cpp index 090f7855e..130f6bac2 100644 --- a/src/zenhttp/testing/httptest.cpp +++ b/src/zenhttp/testing/httptest.cpp @@ -152,7 +152,7 @@ HttpTestingService::PackageHandler::~PackageHandler() } void -HttpTestingService::PackageHandler::FilterOffer(std::vector<IoHash>& OfferCids) +HttpTestingService::PackageHandler::FilterOffer(eastl::vector<IoHash>& OfferCids) { ZEN_UNUSED(OfferCids); // No-op |