src/Error.cc
author Tero Marttila <terom@fixme.fi>
Thu, 22 Jan 2009 00:13:53 +0200
branchnew_graphics
changeset 415 c1069d23890b
parent 227 39cd6861e43e
permissions -rw-r--r--
add forgotten top-level Input.hh

#include "Error.hh"

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