src/Error.cc
author terom
Mon, 15 Dec 2008 23:56:42 +0000
changeset 378 5589abf5e61b
parent 227 39cd6861e43e
permissions -rw-r--r--
break the network code. Too late to set up a branch for this now

#include "Error.hh"

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