src/Error.cc
author Tero Marttila <terom@fixme.fi>
Thu, 22 Jan 2009 02:47:53 +0200
branchnew_graphics
changeset 419 9cd4e54693b6
parent 227 39cd6861e43e
permissions -rw-r--r--
fix Engine <-> NetworkClient interaction

#include "Error.hh"

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