2020-04-09 21:02:10 +03:00
|
|
|
#include "yaml-cpp/depthguard.h"
|
|
|
|
|
|
|
|
namespace YAML {
|
|
|
|
|
2020-04-29 17:40:33 +03:00
|
|
|
DeepRecursion::DeepRecursion(int depth, const Mark& mark_,
|
|
|
|
const std::string& msg_)
|
|
|
|
: ParserException(mark_, msg_), m_depth(depth) {}
|
2020-04-09 21:02:10 +03:00
|
|
|
|
2020-04-29 17:40:33 +03:00
|
|
|
} // namespace YAML
|