Merge pull request #21725 from github/jeongsoolee09/add-aligned-alloc-model

Add models of various `aligned_alloc`s
This commit is contained in:
Jeroen Ketema
2026-04-17 14:31:25 +02:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -12,4 +12,7 @@ extensions:
- ["", "", False, "_malloca", "0", "", "", False]
- ["", "", False, "calloc", "1", "0", "", True]
- ["std", "", False, "calloc", "1", "0", "", True]
- ["bsl", "", False, "calloc", "1", "0", "", True]
- ["bsl", "", False, "calloc", "1", "0", "", True]
- ["", "", False, "aligned_alloc", "1", "", "", True]
- ["std", "", False, "aligned_alloc", "1", "", "", True]
- ["bsl", "", False, "aligned_alloc", "1", "", "", True]

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`.