Enable clang-tidy for headers
[alexxy/gromacs.git] / src / gromacs / selection / selection.h
index 80eb0900e0c038e387bb4578280a178b736df0b4..f112a287d0332688883ff0767b2e3fe3fc81f083 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2009,2010,2011,2012,2013,2014,2015,2016,2017, by the GROMACS development team, led by
+ * Copyright (c) 2009,2010,2011,2012,2013,2014,2015,2016,2017,2018, 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.
@@ -554,13 +554,13 @@ class Selection
     private:
         internal::SelectionData &data()
         {
-            GMX_ASSERT(sel_ != NULL,
+            GMX_ASSERT(sel_ != nullptr,
                        "Attempted to access uninitialized selection");
             return *sel_;
         }
         const internal::SelectionData &data() const
         {
-            GMX_ASSERT(sel_ != NULL,
+            GMX_ASSERT(sel_ != nullptr,
                        "Attempted to access uninitialized selection");
             return *sel_;
         }
@@ -642,7 +642,7 @@ class SelectionPosition
          */
         const rvec &v() const
         {
-            GMX_ASSERT(sel_->rawPositions_.v != NULL,
+            GMX_ASSERT(sel_->rawPositions_.v != nullptr,
                        "Velocities accessed, but unavailable");
             return sel_->rawPositions_.v[i_];
         }
@@ -653,7 +653,7 @@ class SelectionPosition
          */
         const rvec &f() const
         {
-            GMX_ASSERT(sel_->rawPositions_.f != NULL,
+            GMX_ASSERT(sel_->rawPositions_.f != nullptr,
                        "Velocities accessed, but unavailable");
             return sel_->rawPositions_.f[i_];
         }