File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
cpp/ql/src/semmle/code/cpp/models/implementations Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
- import semmle.code.cpp.models.interfaces.Allocation
1
+ /**
2
+ * Provides implementation classes modelling various methods of allocation
3
+ * (`malloc`, `new` etc). See `semmle.code.cpp.models.interfaces.Allocation`
4
+ * for usage information.
5
+ */
6
+
7
+ import semmle.code.cpp.models.interfaces.Allocation
2
8
3
9
/**
4
10
* An allocation function (such as `malloc`) that has an argument for the size
Original file line number Diff line number Diff line change 1
- import semmle.code.cpp.models.interfaces.Allocation
1
+ /**
2
+ * Provides implementation classes modelling various methods of deallocation
3
+ * (`free`, `delete` etc). See `semmle.code.cpp.models.interfaces.Deallocation`
4
+ * for usage information.
5
+ */
6
+
7
+ import semmle.code.cpp.models.interfaces.Allocation
2
8
3
9
/**
4
10
* A deallocation function such as `free`.
You can’t perform that action at this time.
0 commit comments