File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ class graph_mem_pool {
73
73
// / Memory pool cannot be copied
74
74
graph_mem_pool (graph_mem_pool &) = delete ;
75
75
76
+ // / Memory pool cannot be assigned
77
+ graph_mem_pool &operator =(const graph_mem_pool &) = delete ;
78
+
76
79
// / Get a pointer to a new allocation. For device allocations these are
77
80
// / virtual reservations which must be later mapped to allocated physical
78
81
// / memory before use by calling allocateAndMapAll()
Original file line number Diff line number Diff line change @@ -183,6 +183,9 @@ class node_impl : public std::enable_shared_from_this<node_impl> {
183
183
}
184
184
return *this ;
185
185
}
186
+
187
+ ~node_impl () {}
188
+
186
189
// / Checks if this node should be a dependency of another node based on
187
190
// / accessor requirements. This is calculated using access modes if a
188
191
// / requirement to the same buffer is found inside this node.
You can’t perform that action at this time.
0 commit comments