From 518350e18962776302eb81cfd26edea6cbfc8152 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 17 Jan 2013 12:13:16 +0100 Subject: [PATCH] Removing printList.h since it is not used. --- BaseLib/printList.h | 37 ---------------------------- MathLib/EarClippingTriangulation.cpp | 1 - 2 files changed, 38 deletions(-) delete mode 100644 BaseLib/printList.h diff --git a/BaseLib/printList.h b/BaseLib/printList.h deleted file mode 100644 index 2ca61ea8291..00000000000 --- a/BaseLib/printList.h +++ /dev/null @@ -1,37 +0,0 @@ -/** - * \file - * \author Thomas Fischer - * \date 2011-02-23 - * \brief Definition of the printList function. - * - * \copyright - * Copyright (c) 2013, OpenGeoSys Community (http://www.opengeosys.org) - * Distributed under a Modified BSD License. - * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/project/license - * - */ - -#ifndef PRINTLIST_H_ -#define PRINTLIST_H_ - -// STL -#include <list> -#include <string> -#include <iostream> - -namespace BaseLib { - -void printList (std::list<std::size_t> const& mylist, std::string const& title) -{ - std::cout << title << std::endl; - for (std::list<std::size_t>::const_iterator my_it (mylist.begin()); - my_it != mylist.end(); my_it++) { - std::cout << *my_it << " "; - } - std::cout << std::endl; -} - -} // end namespace BaseLib - -#endif /* PRINTLIST_H_ */ diff --git a/MathLib/EarClippingTriangulation.cpp b/MathLib/EarClippingTriangulation.cpp index 5c4d6d46a27..ede63e70c3d 100644 --- a/MathLib/EarClippingTriangulation.cpp +++ b/MathLib/EarClippingTriangulation.cpp @@ -16,7 +16,6 @@ #include <vector> // BaseLib -#include "printList.h" #include "uniqueInsert.h" // MathLib -- GitLab