Skip to content

Commit

Permalink
Added missing boost::placeholders:: prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
seferergun authored and juanrubio committed Feb 16, 2021
1 parent e7304da commit a1e8f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player/src/tizgraphmgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ graphmgr::mgr::start_mpris (const graphmgr_capabilities_t &graphmgr_caps)
boost::bind (&tiz::graphmgr::mgr::pause, this),
boost::bind (&tiz::graphmgr::mgr::stop, this),
boost::bind (&tiz::graphmgr::mgr::quit, this),
boost::bind (&tiz::graphmgr::mgr::volume, this, _1));
boost::bind (&tiz::graphmgr::mgr::volume, this, boost::placeholders::_1));

control::mpris_mediaplayer2_props_t props (
graphmgr_caps.can_quit_, graphmgr_caps.can_raise_,
Expand Down

0 comments on commit a1e8f8b

Please sign in to comment.