src/Error.cc
author terom
Mon, 08 Dec 2008 21:18:08 +0000
changeset 311 440763821484
parent 227 39cd6861e43e
permissions -rw-r--r--
make Input have its own timer, and add key-repeat handling, and fix some warnings

#include "Error.hh"

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