src/Error.cc
author Tero Marttila <terom@fixme.fi>
Tue, 20 Jan 2009 22:00:24 +0200
changeset 406 a2e35ca66c74
parent 227 39cd6861e43e
permissions -rw-r--r--
cleanup Terrain, use a single linear array instead of nested vectors

#include "Error.hh"

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