mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-04 04:28:51 -04:00
Also: - Drop upstreamed patches: -fes-build, -python3.11 - Add patches: -catch-value, -gap-split-root, -bind2nd, -mem-fun-ref
11 lines
523 B
Diff
11 lines
523 B
Diff
--- src/sage/symbolic/ginac/archive.cpp.orig 2023-02-11 06:25:15.000000000 -0700
|
|
+++ src/sage/symbolic/ginac/archive.cpp 2023-03-13 11:50:47.836951365 -0600
|
|
@@ -581,7 +581,7 @@ void archive::clear()
|
|
/** Delete cached unarchived expressions in all archive_nodes (mainly for debugging). */
|
|
void archive::forget()
|
|
{
|
|
- for_each(nodes.begin(), nodes.end(), std::mem_fun_ref(&archive_node::forget));
|
|
+ for (archive_node& node: nodes) node.forget();
|
|
}
|
|
|
|
/** Delete cached unarchived expressions from node (for debugging). */
|