Remove unnecessary comment in test_utils

This commit is contained in:
Christophe Bedard 2019-07-04 16:51:21 +02:00
parent baf90e00e9
commit 6e820b70a3

View file

@ -61,7 +61,6 @@ TEST(TestUtils, valid_symbol_lambda) {
Testing symbol resolution for std::function object created from std::bind.
*/
TEST(TestUtils, valid_symbol_bind) {
// Bind (to member function)
SomeClassWithCallback scwc;
std::function<void(int, std::string)> fscwc = std::bind(
&SomeClassWithCallback::my_callback,