8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace84ae commit 335ffa6Copy full SHA for 335ffa6
matplotlibcpp.h
@@ -248,7 +248,8 @@ namespace matplotlibcpp {
248
Py_DECREF(res);
249
}
250
251
- inline void title(const std::string &titlestr)
+
252
+ inline void title(const std::string &titlestr)
253
{
254
PyObject* pytitlestr = PyString_FromString(titlestr.c_str());
255
PyObject* args = PyTuple_New(1);
@@ -257,7 +258,7 @@ namespace matplotlibcpp {
257
258
PyObject* res = PyObject_CallObject(detail::_interpreter::get().s_python_function_title, args);
259
if(!res) throw std::runtime_error("Call to title() failed.");
260
- //if PyDeCRFF, the show function doesn't wook on Mac OS
261
+ //if PyDeCRFF, the show function doesn't wook on Mac OS
262
263
264
inline void show()
0 commit comments