@@ -192,13 +192,13 @@ namespace jsk_topic_tools
192
192
{
193
193
boost::mutex::scoped_lock lock (connection_mutex_);
194
194
ros::SubscriberStatusCallback connect_cb
195
- #if __cplusplus < 201100L
195
+ #if __cplusplus < 201400L
196
196
= boost::bind (&ConnectionBasedNodelet::connectionCallback, this , _1);
197
197
#else
198
198
= [this ](auto & pub){ connectionCallback (pub); };
199
199
#endif
200
200
ros::SubscriberStatusCallback disconnect_cb
201
- #if __cplusplus < 201100L
201
+ #if __cplusplus < 201400L
202
202
= boost::bind (&ConnectionBasedNodelet::connectionCallback, this , _1);
203
203
#else
204
204
= [this ](auto & pub){ connectionCallback (pub); };
@@ -262,14 +262,14 @@ namespace jsk_topic_tools
262
262
{
263
263
boost::mutex::scoped_lock lock (connection_mutex_);
264
264
image_transport::SubscriberStatusCallback connect_cb
265
- #if __cplusplus < 201100L
265
+ #if __cplusplus < 201400L
266
266
= boost::bind (&ConnectionBasedNodelet::imageConnectionCallback,
267
267
this , _1);
268
268
#else
269
269
= [this ](auto & pub){ imageConnectionCallback (pub); };
270
270
#endif
271
271
image_transport::SubscriberStatusCallback disconnect_cb
272
- #if __cplusplus < 201100L
272
+ #if __cplusplus < 201400L
273
273
= boost::bind (&ConnectionBasedNodelet::imageConnectionCallback,
274
274
this , _1);
275
275
#else
@@ -334,28 +334,28 @@ namespace jsk_topic_tools
334
334
{
335
335
boost::mutex::scoped_lock lock (connection_mutex_);
336
336
image_transport::SubscriberStatusCallback connect_cb
337
- #if __cplusplus < 201100L
337
+ #if __cplusplus < 201400L
338
338
= boost::bind (&ConnectionBasedNodelet::cameraConnectionCallback,
339
339
this , _1);
340
340
#else
341
341
= [this ](auto & pub){ cameraConnectionCallback (pub); };
342
342
#endif
343
343
image_transport::SubscriberStatusCallback disconnect_cb
344
- #if __cplusplus < 201100L
344
+ #if __cplusplus < 201400L
345
345
= boost::bind (&ConnectionBasedNodelet::cameraConnectionCallback,
346
346
this , _1);
347
347
#else
348
348
= [this ](auto & pub){ cameraConnectionCallback (pub); };
349
349
#endif
350
350
ros::SubscriberStatusCallback info_connect_cb
351
- #if __cplusplus < 201100L
351
+ #if __cplusplus < 201400L
352
352
= boost::bind (&ConnectionBasedNodelet::cameraInfoConnectionCallback,
353
353
this , _1);
354
354
#else
355
355
= [this ](auto & pub){ cameraInfoConnectionCallback (pub); };
356
356
#endif
357
357
ros::SubscriberStatusCallback info_disconnect_cb
358
- #if __cplusplus < 201100L
358
+ #if __cplusplus < 201400L
359
359
= boost::bind (&ConnectionBasedNodelet::cameraInfoConnectionCallback,
360
360
this , _1);
361
361
#else
0 commit comments