Pārlūkot izejas kodu

TestDriver: suppress deprecated header lints for time.h

Similar to the other includes, this one should be suppressed as well.
Ben Boeckel 4 gadi atpakaļ
vecāks
revīzija
32ff836e2a
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      Templates/TestDriver.cxx.in

+ 1 - 1
Templates/TestDriver.cxx.in

@@ -2,7 +2,7 @@
 #include <stdio.h>  /* NOLINT */
 #include <stdlib.h> /* NOLINT */
 #include <string.h> /* NOLINT */
-#include <time.h>
+#include <time.h>   /* NOLINT */
 
 #if defined(_MSC_VER)
 #pragma warning(disable : 4996) /* deprecation */