Skip to content
Snippets Groups Projects
Commit 518350e1 authored by Tom Fischer's avatar Tom Fischer
Browse files

Removing printList.h since it is not used.

parent 38e6af5f
No related branches found
No related tags found
No related merge requests found
/**
* \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_ */
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#include <vector> #include <vector>
// BaseLib // BaseLib
#include "printList.h"
#include "uniqueInsert.h" #include "uniqueInsert.h"
// MathLib // MathLib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment