src/Error.cc
author terom
Tue, 09 Dec 2008 04:49:33 +0000
changeset 369 9b682981e060
parent 227 39cd6861e43e
permissions -rw-r--r--
fix some documentation errors

#include "Error.hh"

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