src/Error.cc
author Tero Marttila <terom@fixme.fi>
Fri, 16 Jan 2009 00:42:02 +0200
changeset 397 13fa0546ef87
parent 227 39cd6861e43e
permissions -rw-r--r--
hopefully version stuff is now run properly on every make...

#include "Error.hh"

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