You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
968 B

2 months ago
  1. #include "yaml-cpp/exceptions.h"
  2. #include "yaml-cpp/noexcept.h"
  3. namespace YAML {
  4. // These destructors are defined out-of-line so the vtable is only emitted once.
  5. Exception::~Exception() YAML_CPP_NOEXCEPT = default;
  6. ParserException::~ParserException() YAML_CPP_NOEXCEPT = default;
  7. RepresentationException::~RepresentationException() YAML_CPP_NOEXCEPT = default;
  8. InvalidScalar::~InvalidScalar() YAML_CPP_NOEXCEPT = default;
  9. KeyNotFound::~KeyNotFound() YAML_CPP_NOEXCEPT = default;
  10. InvalidNode::~InvalidNode() YAML_CPP_NOEXCEPT = default;
  11. BadConversion::~BadConversion() YAML_CPP_NOEXCEPT = default;
  12. BadDereference::~BadDereference() YAML_CPP_NOEXCEPT = default;
  13. BadSubscript::~BadSubscript() YAML_CPP_NOEXCEPT = default;
  14. BadPushback::~BadPushback() YAML_CPP_NOEXCEPT = default;
  15. BadInsert::~BadInsert() YAML_CPP_NOEXCEPT = default;
  16. EmitterException::~EmitterException() YAML_CPP_NOEXCEPT = default;
  17. BadFile::~BadFile() YAML_CPP_NOEXCEPT = default;
  18. } // namespace YAML