mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-19 17:31:44 +03:00
16 lines
164 B
C++
16 lines
164 B
C++
#include "exception.hh"
|
|
|
|
#include "string.hh"
|
|
|
|
#include <typeinfo>
|
|
|
|
namespace Kakoune
|
|
{
|
|
|
|
StringView exception::what() const
|
|
{
|
|
return typeid(*this).name();
|
|
}
|
|
|
|
}
|