Files
FastDeploy/third_party/yaml-cpp/src/null.cpp
jiangjiajun 9d87046d78 first commit
2022-07-05 09:30:15 +00:00

11 lines
221 B
C++

#include "yaml-cpp/null.h"
namespace YAML {
_Null Null;
bool IsNullString(const std::string& str) {
return str.empty() || str == "~" || str == "null" || str == "Null" ||
str == "NULL";
}
} // namespace YAML