More debugging

This commit is contained in:
Keith Winstein
2011-08-12 05:38:56 -04:00
parent 30fc11403d
commit 3179ab5f0d
+1
View File
@@ -7,6 +7,7 @@ void KeyStroke::subtract( KeyStroke * const prefix )
for ( deque<char>::iterator i = prefix->user_bytes.begin();
i != prefix->user_bytes.end();
i++ ) {
assert( !user_bytes.empty() );
assert( *i == user_bytes.front() );
user_bytes.pop_front();
}