mirror of
https://github.com/corda/corda.git
synced 2025-03-12 07:23:59 +00:00
Initialized variables to appease gcc 4.2
This commit is contained in:
parent
07daa9be51
commit
c9e0aa824d
@ -292,9 +292,10 @@ class MySystem: public System {
|
||||
Thread* t = static_cast<Thread*>(context);
|
||||
|
||||
if (owner_ == t) {
|
||||
bool interrupted;
|
||||
bool notified;
|
||||
unsigned depth;
|
||||
// Initialized here to make gcc 4.2 a happy compiler
|
||||
bool interrupted = false;
|
||||
bool notified = false;
|
||||
unsigned depth = 0;
|
||||
|
||||
{ ACQUIRE(t->mutex);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user