Problem: inconsistent local variable naming

Solution: configured clang-tidy check and applied fixes
This commit is contained in:
Simon Giesecke
2018-05-25 22:41:05 +02:00
parent c581f43c97
commit 1432011277
7 changed files with 32 additions and 32 deletions

View File

@@ -136,7 +136,7 @@ int zmq::ctx_t::terminate ()
{
slot_sync.lock ();
bool saveTerminating = terminating;
bool save_terminating = terminating;
terminating = false;
// Connect up any pending inproc connections, otherwise we will hang
@@ -149,7 +149,7 @@ int zmq::ctx_t::terminate ()
s->bind (p->first.c_str ());
s->close ();
}
terminating = saveTerminating;
terminating = save_terminating;
if (!starting) {
#ifdef HAVE_FORK