kakoune/src/exception.cc

15 lines
168 B
C++
Raw Normal View History

2011-09-09 20:40:59 +02:00
#include "exception.hh"
#include <string>
#include <typeinfo>
namespace Kakoune
{
std::string exception::description() const
{
return typeid(*this).name();
}
}