Renamed all variables named 'null'

This commit is contained in:
Jesse Beder
2012-11-08 18:21:00 -06:00
parent 979a91692f
commit 06e09d1d64
5 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ namespace YAML
struct YAML_CPP_API Mark {
Mark(): pos(0), line(0), column(0) {}
static const Mark null() { return Mark(-1, -1, -1); }
static const Mark null_mark() { return Mark(-1, -1, -1); }
int pos;
int line, column;