mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
11 lines
202 B
C++
11 lines
202 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";
|
|
}
|
|
}
|