summaryrefslogtreecommitdiffstats
path: root/contrib/libs/yaml-cpp/src/null.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/libs/yaml-cpp/src/null.cpp')
-rw-r--r--contrib/libs/yaml-cpp/src/null.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/libs/yaml-cpp/src/null.cpp b/contrib/libs/yaml-cpp/src/null.cpp
index d12dd08ce4b..3f29fd0f894 100644
--- a/contrib/libs/yaml-cpp/src/null.cpp
+++ b/contrib/libs/yaml-cpp/src/null.cpp
@@ -1,10 +1,10 @@
-#include "yaml-cpp/null.h"
-
-namespace YAML {
-_Null Null;
+#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";
-}
+}
}