kakoune/src/exception.cc

16 lines
165 B
C++
Raw Normal View History

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