From 7017f27c785c640000d49ba49b4fe6dd453ef5e6 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Fri, 10 Feb 2017 09:53:48 +0100 Subject: [PATCH] fix log output. --- alib2algo/src/stringology/query/PositionHeapFactors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alib2algo/src/stringology/query/PositionHeapFactors.h b/alib2algo/src/stringology/query/PositionHeapFactors.h index 0f0eeb2d54..0c7884fc8d 100644 --- a/alib2algo/src/stringology/query/PositionHeapFactors.h +++ b/alib2algo/src/stringology/query/PositionHeapFactors.h @@ -73,7 +73,7 @@ std::set < unsigned > PositionHeapFactors::query ( const indexes::PositionHeap < for ( const SymbolType & symbol : string.getContent ( ) ) { if(common::GlobalData::verbose) - std::clog << "on path possible occ (raw, string index): (" << node->getData ( ) << ", " << indexedStringSize - node->getData ( ) << ")"; + std::clog << "on path possible occ (raw, string index): (" << node->getData ( ) << ", " << indexedStringSize - node->getData ( ) << ")" << std::endl; if ( checkOcc ( string, depth, positionHeap.getString ( ), indexedStringSize - node->getData ( ) ) ) res.insert ( indexedStringSize - node->getData ( ) ); -- GitLab