null.cpp 202 B

12345678910
  1. #include "yaml-cpp/null.h"
  2. namespace YAML {
  3. _Null Null;
  4. bool IsNullString(const std::string& str) {
  5. return str.empty() || str == "~" || str == "null" || str == "Null" ||
  6. str == "NULL";
  7. }
  8. }