eliminate all dependencies on boost

mainly to get rid of AX_BOOST_BASE and to reduce the number of
dependencies.
This commit is contained in:
Andreas Lauser 2011-12-20 13:42:31 +00:00 committed by Andreas Lauser
parent 366fe98949
commit 358449a1bd

View File

@ -35,16 +35,14 @@
#include <dune/common/exceptions.hh>
#include <dune/common/mpihelper.hh>
#include <iostream>
#include <boost/format.hpp> /*@\label{tutorial-decoupled:include-end}@*/
#include <iostream> /*@\label{tutorial-decoupled:include-end}@*/
////////////////////////////////////////////
// function to check the input parameters
////////////////////////////////////////////
void usage(const char *progname)
{
std::cout << boost::format("usage: %s [--restart restartTime] tEnd\n")%progname;
std::cout << "usage: "<<progname<<" [--restart restartTime] tEnd\n";
exit(1);
}