2016-12-03 18:58:44 +03:00
|
|
|
#include "yaml-cpp/exceptions.h"
|
2020-02-04 22:24:37 +03:00
|
|
|
#include "yaml-cpp/noexcept.h"
|
2017-07-25 15:11:10 +03:00
|
|
|
|
2016-12-03 18:58:44 +03:00
|
|
|
namespace YAML {
|
|
|
|
|
|
|
|
|
|
// These destructors are defined out-of-line so the vtable is only emitted once.
|
2019-10-02 16:38:49 +03:00
|
|
|
Exception::~Exception() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
ParserException::~ParserException() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
RepresentationException::~RepresentationException() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
InvalidScalar::~InvalidScalar() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
KeyNotFound::~KeyNotFound() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
InvalidNode::~InvalidNode() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
BadConversion::~BadConversion() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
BadDereference::~BadDereference() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
BadSubscript::~BadSubscript() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
BadPushback::~BadPushback() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
BadInsert::~BadInsert() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
EmitterException::~EmitterException() YAML_CPP_NOEXCEPT = default;
|
|
|
|
|
BadFile::~BadFile() YAML_CPP_NOEXCEPT = default;
|
2020-04-29 17:40:33 +03:00
|
|
|
} // namespace YAML
|