depthguard.cpp 241 Bytes
Newer Older
Alan Griffiths's avatar
Alan Griffiths committed
1
2
3
4
#include "yaml-cpp/depthguard.h"

namespace YAML {

Ian Taylor's avatar
Ian Taylor committed
5
6
7
DeepRecursion::DeepRecursion(int depth, const Mark& mark_,
                             const std::string& msg_)
    : ParserException(mark_, msg_), m_depth(depth) {}
Alan Griffiths's avatar
Alan Griffiths committed
8

Ian Taylor's avatar
Ian Taylor committed
9
}  // namespace YAML