From b2fcc7626340900678e31c4cc867f26e89c05387 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Thu, 24 Feb 2011 13:27:44 -0600 Subject: [PATCH] Removed spurious warning --- mytools/voidTree.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mytools/voidTree.hpp b/mytools/voidTree.hpp index 45e3177..33fdf9f 100644 --- a/mytools/voidTree.hpp +++ b/mytools/voidTree.hpp @@ -68,7 +68,7 @@ public: } if (iter_candidate == candidateList.begin()) { - std::cout << "Failure to lookup parent" << std::endl; +// std::cout << "Failure to lookup parent" << std::endl; return -1; } @@ -111,7 +111,7 @@ public: // Go bigger, though I would say we should not to. } while (iter_candidate != candidateList.begin()) ; - std::cout << "Failure to lookup parent (2)" << std::endl; +// std::cout << "Failure to lookup parent (2)" << std::endl; return -1; }