fix compile issue because comma was missing

This commit is contained in:
Emiel Bruijntjes 2017-10-24 12:54:29 +02:00
parent 228daeee08
commit d75ae2ebe1
1 changed files with 6 additions and 6 deletions

View File

@ -156,7 +156,7 @@ private:
boost::placeholders::_2,
// C++17 has 'weak_from_this()' support.
#if __cplusplus >= 201701L
weak_from_this()
weak_from_this(),
#else
shared_from_this(),
#endif
@ -201,7 +201,7 @@ private:
boost::placeholders::_2,
// C++17 has 'weak_from_this()' support.
#if __cplusplus >= 201701L
weak_from_this()
weak_from_this(),
#else
shared_from_this(),
#endif
@ -270,7 +270,7 @@ private:
boost::placeholders::_2,
// C++17 has 'weak_from_this()' support.
#if __cplusplus >= 201701L
weak_from_this()
weak_from_this(),
#else
shared_from_this(),
#endif
@ -294,7 +294,7 @@ private:
boost::placeholders::_2,
// C++17 has 'weak_from_this()' support.
#if __cplusplus >= 201701L
weak_from_this()
weak_from_this(),
#else
shared_from_this(),
#endif
@ -363,7 +363,7 @@ private:
boost::placeholders::_1,
// C++17 has 'weak_from_this()' support.
#if __cplusplus >= 201701L
weak_from_this()
weak_from_this(),
#else
shared_from_this(),
#endif
@ -430,7 +430,7 @@ private:
boost::placeholders::_1,
// C++17 has 'weak_from_this()' support.
#if __cplusplus >= 201701L
weak_from_this()
weak_from_this(),
#else
shared_from_this(),
#endif