Run clang-format.

This commit is contained in:
Jesse Beder
2016-10-12 00:00:39 -05:00
parent 086fec5c35
commit b5b03bb9ad
10 changed files with 35 additions and 43 deletions

View File

@@ -4,6 +4,7 @@ namespace YAML {
_Null Null;
bool IsNullString(const std::string& str) {
return str.empty() || str == "~" || str == "null" || str == "Null" || str == "NULL";
return str.empty() || str == "~" || str == "null" || str == "Null" ||
str == "NULL";
}
}