GNOME Bugzilla – Bug 791711
glib/glibmm/threads.h:660:29: error: cannot convert ‘GPrivate’ {aka ‘_GPrivate’} to ‘GPrivate*’ {aka ‘_GPrivate*’} in return
Last modified: 2017-12-20 19:04:14 UTC
... glib/glibmm/threads.h:660:29: error: cannot convert ‘GPrivate’ {aka ‘_GPrivate’} to ‘GPrivate*’ {aka ‘_GPrivate*’} in return Missing &: 660 GPrivate* gobj() { return gobject_; } should be 660 GPrivate* gobj() { return &gobject_; }
Fixed in the glibmm-2-54 branch. No fix is necessary in the master branch. The threads.hg and threads.h files don't exist there.