src/Error.cc
author Tero Marttila <terom@fixme.fi>
Sat, 17 Jan 2009 02:58:36 +0200
changeset 405 7a8c7a0a1261
parent 227 39cd6861e43e
permissions -rw-r--r--
fluff out README (test commit)

#include "Error.hh"

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