summaryrefslogtreecommitdiff
path: root/src/context/backtrackable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/backtrackable.h')
-rw-r--r--src/context/backtrackable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/backtrackable.h b/src/context/backtrackable.h
index 5d358941f..85281e7fa 100644
--- a/src/context/backtrackable.h
+++ b/src/context/backtrackable.h
@@ -160,7 +160,7 @@ template <class T>
void List<T>::concat (List<T>* other) {
bck->checkConsistency();
bck->notifyConcat(this, other);
- Assert(tail->next==NULL);
+ Assert(tail->next == NULL);
tail->next = other->head;
Assert(other->ptr_to_head == NULL);
other->ptr_to_head = tail;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback