src/Error.cc
author saiam
Tue, 09 Dec 2008 02:26:42 +0000
changeset 348 3ebcccc7ee44
parent 227 39cd6861e43e
permissions -rw-r--r--
Simplified the architecture description a bit

#include "Error.hh"

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