Tidy: modernize-use-nullptr
[alexxy/gromacs.git] / src / gromacs / commandline / shellcompletions.cpp
index 88d64ab8c627d2060d5abbedaabc4e905ff21177..7a8e23da57cf34f292de98b1744e40c555ea4575 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013,2014,2015,2016, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014,2015,2016,2017, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -94,7 +94,7 @@ class OptionsListWriter : public OptionsVisitor
             optionList_.append("-");
             const BooleanOptionInfo *booleanOption
                 = option.toType<BooleanOptionInfo>();
-            if (booleanOption != NULL && booleanOption->defaultValue())
+            if (booleanOption != nullptr && booleanOption->defaultValue())
             {
                 optionList_.append("no");
             }
@@ -132,7 +132,7 @@ void OptionCompletionWriter::visitOption(const OptionInfo &option)
         return;
     }
     const FileNameOptionInfo *fileOption = option.toType<FileNameOptionInfo>();
-    if (fileOption != NULL)
+    if (fileOption != nullptr)
     {
         if (fileOption->isDirectoryOption())
         {
@@ -157,7 +157,7 @@ void OptionCompletionWriter::visitOption(const OptionInfo &option)
         return;
     }
     const StringOptionInfo *stringOption = option.toType<StringOptionInfo>();
-    if (stringOption != NULL && stringOption->isEnumerated())
+    if (stringOption != nullptr && stringOption->isEnumerated())
     {
         std::string completion("compgen -S ' ' -W $'");
         completion.append(joinStrings(stringOption->allowedValues(), "\\n"));