Add some spaces to format code consistently

pull/3543/head
Martin 2020-12-15 12:36:00 +01:00 committed by GitHub
parent 3718980c09
commit 8003a016c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ bool IOStreamBuffer<T>::getNextDataLine( std::vector<T> &buffer, T continuationT
for( ;; ) {
if ( continuationToken == m_cache[ m_cachePos ] && IsLineEnd( m_cache[ m_cachePos + 1 ] ) ) {
++m_cachePos;
while (m_cache[m_cachePos] != '\n') {
while ( m_cache[ m_cachePos ] != '\n' ) {
++m_cachePos;
}
++m_cachePos;