Fixed minor things that used the old API, compiles/links/runs\!

This commit is contained in:
Jesse Beder
2011-09-10 22:59:27 -05:00
parent f7b2247217
commit 80cf3c98db
4 changed files with 12 additions and 1 deletions

View File

@@ -16,7 +16,9 @@ namespace YAML
inline bool operator == (const _Null&, const _Null&) { return true; }
inline bool operator != (const _Null&, const _Null&) { return false; }
#if YAML_CPP_OLD_API
YAML_CPP_API bool IsNull(const Node& node);
#endif
extern YAML_CPP_API _Null Null;
}