Problem: redundant inline/ZMQ_FINAL declarations

Solution: remove them
This commit is contained in:
Simon Giesecke
2020-02-04 11:57:58 +01:00
parent 84ec65482f
commit db8f4fba21
61 changed files with 303 additions and 328 deletions

View File

@@ -101,9 +101,9 @@ namespace zmq
class condition_variable_t
{
public:
inline condition_variable_t () ZMQ_DEFAULT;
condition_variable_t () ZMQ_DEFAULT;
inline int wait (mutex_t *mutex_, int timeout_)
int wait (mutex_t *mutex_, int timeout_)
{
// this assumes that the mutex mutex_ has been locked by the caller
int res = 0;
@@ -119,7 +119,7 @@ class condition_variable_t
return res;
}
inline void broadcast ()
void broadcast ()
{
// this assumes that the mutex associated with _cv has been locked by the caller
_cv.notify_all ();