Move option_not_found exception to the cpp file
This commit is contained in:
parent
bbefde9379
commit
720c54c759
|
@ -39,6 +39,12 @@ void OptionManager::unregister_watcher(OptionManagerWatcher& watcher)
|
||||||
m_watchers.erase(it);
|
m_watchers.erase(it);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct option_not_found : public runtime_error
|
||||||
|
{
|
||||||
|
option_not_found(StringView name)
|
||||||
|
: runtime_error("option not found: " + name) {}
|
||||||
|
};
|
||||||
|
|
||||||
Option& OptionManager::get_local_option(StringView name)
|
Option& OptionManager::get_local_option(StringView name)
|
||||||
{
|
{
|
||||||
auto it = find_option(m_options, name);
|
auto it = find_option(m_options, name);
|
||||||
|
|
|
@ -12,12 +12,6 @@
|
||||||
namespace Kakoune
|
namespace Kakoune
|
||||||
{
|
{
|
||||||
|
|
||||||
struct option_not_found : public runtime_error
|
|
||||||
{
|
|
||||||
option_not_found(StringView name)
|
|
||||||
: runtime_error("option not found: " + name) {}
|
|
||||||
};
|
|
||||||
|
|
||||||
class OptionManager;
|
class OptionManager;
|
||||||
|
|
||||||
enum class OptionFlags
|
enum class OptionFlags
|
||||||
|
|
Loading…
Reference in New Issue
Block a user