mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2026-07-23 04:05:33 -04:00
9f2781b527
Fix invocation of clang-format in CMakeLists and apply clang-format.
11 lines
221 B
C++
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
|