From 56a41724808021442b26b0acb43a339e30ffc831 Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Sat, 12 Dec 2009 04:12:24 +0000 Subject: [PATCH] Fixed printing in matlab --- cpp/Vector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/Vector.cpp b/cpp/Vector.cpp index cc148f11e..79a7bf383 100644 --- a/cpp/Vector.cpp +++ b/cpp/Vector.cpp @@ -44,7 +44,7 @@ namespace gtsam { #ifdef WIN32 OutputDebugString(buf); #else - printf("%s",buf); + cout << buf; #endif }