Skip to content

Commit

Permalink
Fix build error on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Aug 22, 2021
1 parent fc2d5e4 commit 4fb89e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittests/unit/test_Signal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ TEST(Signal, NonStaticMemberFunction)
signal2.connect(&Viewer::onSignal2Static);

// Connect non-static member function
using placeholders::_1;
using placeholders::_2;
using std::placeholders::_1;
using std::placeholders::_2;
signal1.connect(bind(&Viewer::onSignal1, &viewer, _1));
signal2.connect(bind(&Viewer::onSignal2, &viewer, _1, _2));

Expand Down

0 comments on commit 4fb89e2

Please sign in to comment.