diff dsp/segmentation/Segmenter.cpp @ 480:175e51ae78eb

Untabify, indent, tidy
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 31 May 2019 10:53:39 +0100
parents 7e8d1f26b098
children d48276a3ae24
line wrap: on
line diff
--- a/dsp/segmentation/Segmenter.cpp	Fri May 31 10:35:08 2019 +0100
+++ b/dsp/segmentation/Segmenter.cpp	Fri May 31 10:53:39 2019 +0100
@@ -19,11 +19,11 @@
 ostream& operator<<(ostream& os, const Segmentation& s)
 {
     os << "structure_name : begin_time end_time\n";
-	
+        
     for (int i = 0; i < int(s.segments.size()); i++) {
-	Segment seg = s.segments[i];
-	os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate) 
-	   << '\t' << std::setprecision(6) << seg.end / static_cast<double>(s.samplerate) << "\n";
+        Segment seg = s.segments[i];
+        os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate) 
+           << '\t' << std::setprecision(6) << seg.end / static_cast<double>(s.samplerate) << "\n";
     }
     
     return os;