File: 13-performance-single-cdebug-output.diff

package info (click to toggle)
festival 1%3A2.5.0-11
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,620 kB
  • sloc: cpp: 27,915; lisp: 15,725; ansic: 6,022; sh: 5,683; java: 1,536; makefile: 757; xml: 291; perl: 87
file content (20 lines) | stat: -rw-r--r-- 770 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
This patch is for festival for Debian GNU/Linux, which 
replaces four debug write calls with one

--- a/src/modules/UniSyn_diphone/UniSyn_diphone.cc
+++ b/src/modules/UniSyn_diphone/UniSyn_diphone.cc
@@ -123,10 +123,10 @@
     }
     else
     {
-	*cdebug << ":" << get_param_str("grouped",args,"") << ":" << endl;
-	*cdebug << "index grouped:" << d_index->grouped << endl;
-	*cdebug << "true:" << true << endl;
-	*cdebug << "false:" << false << endl;
+	*cdebug << ":" << get_param_str("grouped",args,"") << ":" << endl
+	        << "index grouped:" << d_index->grouped << endl
+	        << "true:" << true << endl
+	        << "false:" << false << endl;
 	
 	d_index->coef_dir = get_param_str("coef_dir",args,"");
 	d_index->sig_dir = get_param_str("sig_dir",args,"");