Switch NULL to C++11 nullptr in source/Interpreter

Patch by Robert Matusewicz

llvm-svn: 206711
diff --git a/lldb/source/Interpreter/OptionValueBoolean.cpp b/lldb/source/Interpreter/OptionValueBoolean.cpp
index 6471943..de8af04 100644
--- a/lldb/source/Interpreter/OptionValueBoolean.cpp
+++ b/lldb/source/Interpreter/OptionValueBoolean.cpp
@@ -58,7 +58,7 @@
             }
             else
             {
-                if (value_cstr == NULL)
+                if (value_cstr == nullptr)
                     error.SetErrorString ("invalid boolean string value: NULL");
                 else if (value_cstr[0] == '\0')
                     error.SetErrorString ("invalid boolean string value <empty>");