Fix warning: missing paren.
This commit is contained in:
parent
b202f00c12
commit
e0e69e0838
@ -183,8 +183,8 @@ namespace cling {
|
||||
T->setState(Transaction::kCompleted);
|
||||
// Empty transaction send it back to the pool.
|
||||
if (T->empty()) {
|
||||
assert(!m_Consumer->getTransaction()
|
||||
|| (m_Consumer->getTransaction() == T)
|
||||
assert((!m_Consumer->getTransaction()
|
||||
|| (m_Consumer->getTransaction() == T))
|
||||
&& "Cannot release different T");
|
||||
// If a nested transaction the active one should be its parent
|
||||
// from now on. FIXME: Merge conditional with commitTransaction
|
||||
|
Loading…
x
Reference in New Issue
Block a user