Skip to content

Commit 5cca1f0

Browse files
committed
fixed a cxx destructor bug
svn path=/trunk/matplotlib/; revision=2822
1 parent b7e35ca commit 5cca1f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CXX/Objects.hxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@ namespace Py
19351935
if(map.hasKey(key)) the_item = map.getItem(key);
19361936
};
19371937

1938-
~mapref<T>()
1938+
~mapref()
19391939
{}
19401940

19411941
// MapBase<T> stuff

examples/annotation_demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
fontsize=20)
9595
ax.add_artist(f)
9696

97-
fig.savefig('annotation_demo2')
97+
fig.savefig('annotation_coords')
9898

9999
if 1:
100100
# annotations work on polar axes too. The annotation coords below

0 commit comments

Comments
 (0)