mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-23 04:05:55 -04:00
Version 9.8
Also: - Drop upstreamed patches: -fes-build, -python3.11 - Add patches: -catch-value, -gap-split-root, -bind2nd, -mem-fun-ref
This commit is contained in:
parent
a560530636
commit
d510b9edac
15 changed files with 553 additions and 1223 deletions
11
sagemath-mem-fun-ref.patch
Normal file
11
sagemath-mem-fun-ref.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- 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). */
|
Loading…
Add table
Add a link
Reference in a new issue