Enable clang tidy/warnings for tests
[alexxy/gromacs.git] / src / gromacs / utility / tests / alignedallocator-impl.h
index d5922882003b92a0407cbeda9ac6707437d85c9f..1982c1a874c80cd9b0c5a4afbf736730b93a43f2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2015,2017, by the GROMACS development team, led by
+ * Copyright (c) 2015,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.
@@ -80,7 +80,7 @@ class AllocatorTest : public ::testing::Test
 
 // NB need to use this->mask() because of GoogleTest quirks
 
-TYPED_TEST(AllocatorTest, AllocatorAlignAllocatesWithAlignment)
+TYPED_TEST(AllocatorTest, AllocatorAlignAllocatesWithAlignment) //NOLINT(misc-definitions-in-headers)
 {
     using pointer = typename TypeParam::pointer;
     TypeParam a;
@@ -91,7 +91,7 @@ TYPED_TEST(AllocatorTest, AllocatorAlignAllocatesWithAlignment)
 }
 
 
-TYPED_TEST(AllocatorTest, VectorAllocatesAndResizesWithAlignment)
+TYPED_TEST(AllocatorTest, VectorAllocatesAndResizesWithAlignment) //NOLINT(misc-definitions-in-headers)
 {
     using value_type = typename TypeParam::value_type;
     std::vector<value_type, TypeParam> v(10);
@@ -107,7 +107,7 @@ TYPED_TEST(AllocatorTest, VectorAllocatesAndResizesWithAlignment)
     }
 }
 
-TYPED_TEST(AllocatorTest, VectorAllocatesAndReservesWithAlignment)
+TYPED_TEST(AllocatorTest, VectorAllocatesAndReservesWithAlignment) //NOLINT(misc-definitions-in-headers)
 {
     using value_type = typename TypeParam::value_type;
     std::vector<value_type, TypeParam> v(10);