src/Error.cc
author terom
Mon, 15 Dec 2008 14:34:14 +0000
changeset 372 a03d7d716dd9
parent 227 39cd6861e43e
permissions -rw-r--r--
remove redundant doc/doxygen directory

#include "Error.hh"

std::ostream& operator<< (std::ostream &s, Error &e) {
    return s << e.what();
}