diff framework/TransformUserConfigurator.cpp @ 293:068235cf5bf7

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 14:12:50 +0000
parents 8aace2d9f1c2
children 0876ea394902
line wrap: on
line diff
--- a/framework/TransformUserConfigurator.cpp	Wed Oct 09 14:56:20 2013 +0100
+++ b/framework/TransformUserConfigurator.cpp	Tue Nov 26 14:12:50 2013 +0000
@@ -81,7 +81,7 @@
 	std::vector<Vamp::Plugin::OutputDescriptor> od =
 	    vp->getOutputDescriptors();
 
-	std::cerr << "configure: looking for output: " << output << std::endl;
+	cerr << "configure: looking for output: " << output << endl;
 
 	if (od.size() > 1) {
 	    for (size_t i = 0; i < od.size(); ++i) {
@@ -173,12 +173,12 @@
     if (selectedInput != "") {
 	if (modelMap.contains(selectedInput)) {
 	    inputModel = modelMap.value(selectedInput);
-	    std::cerr << "Found selected input \"" << selectedInput << "\" in model map, result is " << inputModel << std::endl;
+	    cerr << "Found selected input \"" << selectedInput << "\" in model map, result is " << inputModel << endl;
 	} else {
-	    std::cerr << "Failed to find selected input \"" << selectedInput << "\" in model map" << std::endl;
+	    cerr << "Failed to find selected input \"" << selectedInput << "\" in model map" << endl;
 	}
     } else {
-	std::cerr << "Selected input empty: \"" << selectedInput << "\"" << std::endl;
+	cerr << "Selected input empty: \"" << selectedInput << "\"" << endl;
     }
         
     // Write parameters back to transform object