Browse Source

Merge topic 'nolint_typedef_testdriver'

bbbcbb1a48 TestDriver: Disable clang-tidy 'modernize-use-using'

Acked-by: Kitware Robot <[email protected]>
Merge-request: !2118
Brad King 7 years ago
parent
commit
5ba76299f8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Templates/TestDriver.cxx.in

+ 2 - 2
Templates/TestDriver.cxx.in

@@ -20,8 +20,8 @@
 
 /* Create map.  */
 
-typedef int (*MainFuncPointer)(int, char* []);
-typedef struct
+typedef int (*MainFuncPointer)(int, char* []); /* NOLINT */
+typedef struct /* NOLINT */
 {
   const char* name;
   MainFuncPointer func;