Add back a clang-tidy exception
authorSzilárd Páll <pall.szilard@gmail.com>
Fri, 23 Aug 2019 16:12:35 +0000 (18:12 +0200)
committerMark Abraham <mark.j.abraham@gmail.com>
Wed, 4 Sep 2019 12:52:34 +0000 (14:52 +0200)
Previous commit (658819) removed a clang-tidy exception that was
needed with clang 8, but the SIMD + GPU path have not been enabled
yet with clang-8 tidy. To be able to enable the pending CI configs
this change adds back the nolint exception.

Change-Id: I6be4856c64161a1a5f57849d13b4cdea335cc3bb

src/gromacs/utility/keyvaluetree.h

index a30891179703b740b8b5460d089fa717203eecda..0ce225ea75539b6a321aae3a5d5afd7cd47883ad 100644 (file)
@@ -256,6 +256,7 @@ class KeyValueTreeObject
             return *this;
         }
         //! Default move constructor.
+        //NOLINTNEXTLINE(performance-noexcept-move-constructor) bug #38733
         KeyValueTreeObject(KeyValueTreeObject &&)            = default;
         //! Default move assignment.
         KeyValueTreeObject &operator=(KeyValueTreeObject &&) = default;