Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f09dd04

Browse filesBrowse files
committed
Fix #1839: Compilation on Solaris
1 parent 7d61147 commit f09dd04
Copy full SHA for f09dd04

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/ft2font.cpp

Copy file name to clipboardExpand all lines: src/ft2font.cpp
+2-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.