yaml-cpp

FORK: A YAML parser and emitter in C++
git clone https://git.neptards.moe/neptards/yaml-cpp.git
Log | Files | Refs | README | LICENSE

depthguard.cpp (241B)


      1 #include "yaml-cpp/depthguard.h"
      2 
      3 namespace YAML {
      4 
      5 DeepRecursion::DeepRecursion(int depth, const Mark& mark_,
      6                              const std::string& msg_)
      7     : ParserException(mark_, msg_), m_depth(depth) {}
      8 
      9 }  // namespace YAML