mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2026-07-25 20:55:22 -04:00
13 lines
151 B
C++
13 lines
151 B
C++
#include "yaml-cpp/null.h"
|
|
#include "yaml-cpp/node.h"
|
|
|
|
namespace YAML
|
|
{
|
|
_Null Null;
|
|
|
|
bool IsNull(const Node& node)
|
|
{
|
|
return node.Read(Null);
|
|
}
|
|
}
|