fix compile issue because comma was missing
This commit is contained in:
parent
228daeee08
commit
d75ae2ebe1
|
|
@ -156,7 +156,7 @@ private:
|
||||||
boost::placeholders::_2,
|
boost::placeholders::_2,
|
||||||
// C++17 has 'weak_from_this()' support.
|
// C++17 has 'weak_from_this()' support.
|
||||||
#if __cplusplus >= 201701L
|
#if __cplusplus >= 201701L
|
||||||
weak_from_this()
|
weak_from_this(),
|
||||||
#else
|
#else
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -201,7 +201,7 @@ private:
|
||||||
boost::placeholders::_2,
|
boost::placeholders::_2,
|
||||||
// C++17 has 'weak_from_this()' support.
|
// C++17 has 'weak_from_this()' support.
|
||||||
#if __cplusplus >= 201701L
|
#if __cplusplus >= 201701L
|
||||||
weak_from_this()
|
weak_from_this(),
|
||||||
#else
|
#else
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -270,7 +270,7 @@ private:
|
||||||
boost::placeholders::_2,
|
boost::placeholders::_2,
|
||||||
// C++17 has 'weak_from_this()' support.
|
// C++17 has 'weak_from_this()' support.
|
||||||
#if __cplusplus >= 201701L
|
#if __cplusplus >= 201701L
|
||||||
weak_from_this()
|
weak_from_this(),
|
||||||
#else
|
#else
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -294,7 +294,7 @@ private:
|
||||||
boost::placeholders::_2,
|
boost::placeholders::_2,
|
||||||
// C++17 has 'weak_from_this()' support.
|
// C++17 has 'weak_from_this()' support.
|
||||||
#if __cplusplus >= 201701L
|
#if __cplusplus >= 201701L
|
||||||
weak_from_this()
|
weak_from_this(),
|
||||||
#else
|
#else
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -363,7 +363,7 @@ private:
|
||||||
boost::placeholders::_1,
|
boost::placeholders::_1,
|
||||||
// C++17 has 'weak_from_this()' support.
|
// C++17 has 'weak_from_this()' support.
|
||||||
#if __cplusplus >= 201701L
|
#if __cplusplus >= 201701L
|
||||||
weak_from_this()
|
weak_from_this(),
|
||||||
#else
|
#else
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -430,7 +430,7 @@ private:
|
||||||
boost::placeholders::_1,
|
boost::placeholders::_1,
|
||||||
// C++17 has 'weak_from_this()' support.
|
// C++17 has 'weak_from_this()' support.
|
||||||
#if __cplusplus >= 201701L
|
#if __cplusplus >= 201701L
|
||||||
weak_from_this()
|
weak_from_this(),
|
||||||
#else
|
#else
|
||||||
shared_from_this(),
|
shared_from_this(),
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue