From 166bf47d5b677070044bc801eec08552ad713193 Mon Sep 17 00:00:00 2001 From: Tim Niemueller Date: Wed, 4 Jan 2012 12:37:17 +0100 Subject: [PATCH] factory: remove debug printout Removed a cout statement which doesn't belong there and which causes build fails on recent systems. --- clipsmm/factory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clipsmm/factory.cpp b/clipsmm/factory.cpp index 7c78173..919a992 100644 --- a/clipsmm/factory.cpp +++ b/clipsmm/factory.cpp @@ -102,7 +102,7 @@ namespace CLIPS { } return values; default: - std::cout << std::endl << "Type: " << GetType(clipsdo) << std::endl; + //std::cout << std::endl << "Type: " << GetType(clipsdo) << std::endl; throw std::logic_error( "clipsmm::data_object_to_values: Unhandled data object type" ); } }