Skip to content
Snippets Groups Projects
Commit 32a4522f authored by Tobias S. Josefowitz's avatar Tobias S. Josefowitz
Browse files

Merge branch 'tobij/fix-inttree-values-sig' into 8.0

* tobij/fix-inttree-values-sig:
  CritBit: Fix signature of _values() in IntTree.
parents 4c535aac 06ed3ba8
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,13 @@ o Concurrent ...@@ -28,6 +28,13 @@ o Concurrent
Bug fixes Bug fixes
--------- ---------
o ADT.CritBit.IntTree
Fixed the signature of ADT.CritBit.IntTree()->_values().
values(ADT.CritBit.IntTree()) claimed to return an array(int),
whereas IntTrees can hold any type as value.
o backtrace() o backtrace()
Hide mutex keys and crypto contexts from backtraces. Hide mutex keys and crypto contexts from backtraces.
......
...@@ -481,7 +481,7 @@ class MultiTree { ...@@ -481,7 +481,7 @@ class MultiTree {
return predef::`+(@map(trees, indices)); return predef::`+(@map(trees, indices));
} }
array(int) _values() { array _values() {
return predef::`+(@map(trees, values)); return predef::`+(@map(trees, values));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment