8000 Fix #1839: Compilation on Solaris · ryanfreckleton/matplotlib@f09dd04 · GitHub
[go: up one dir, main page]

Skip to content

Commit f09dd04

Browse files
committed
Fix matplotlib#1839: Compilation on Solaris
1 parent 7d61147 commit f09dd04

File tree

1 file changed

+2
-2
lines changed

src/ft2font.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
FT_Library _ft2Library;
4242

4343
FT2Image::FT2Image(Py::PythonClassInstance *self, Py::Tuple &args, Py::Dict &kwds) :
44-
Py::PythonClass< FT2Image >::PythonClass(self, args, kwds),
44+
Py::PythonClass< FT2Image >(self, args, kwds),
4545
_isDirty(true),
4646
_buffer(NULL),
4747
_width(0), _height(0)
@@ -836,7 +836,7 @@ FT2Font::get_path()
836836
PYCXX_NOARGS_METHOD_DECL(FT2Font, get_path)
837837

838838
FT2Font::FT2Font(Py::PythonClassInstance *self, Py::Tuple &args, Py::Dict &kwds) :
839-
Py::PythonClass<FT2Font>::PythonClass(self, args, kwds),
839+
Py::PythonClass<FT2Font>(self, args, kwds),
840840
image()
841841
{
842842
args.verify_length(1);

0 commit comments

Comments
 (0)
0