1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-19 17:31:44 +03:00
kakoune/src/exception.cc

16 lines
165 B
C++

#include "exception.hh"
#include "string.hh"
#include <typeinfo>
namespace Kakoune
{
const char* exception::what() const
{
return typeid(*this).name();
}
}