diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-07-14 16:47:16 -0400 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-07-14 16:47:16 -0400 |
commit | 32ff836e2adcfefd9ff8f7bd24d20da30c42c62f (patch) | |
tree | d0bbac90244af7842a81b04ad1523a41f0635a0e | |
parent | ff7a2e37bfff23ce1751a93b3eba179fbf32a9b6 (diff) | |
download | cmake-32ff836e2adcfefd9ff8f7bd24d20da30c42c62f.tar.gz |
TestDriver: suppress deprecated header lints for time.h
Similar to the other includes, this one should be suppressed as well.
-rw-r--r-- | Templates/TestDriver.cxx.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Templates/TestDriver.cxx.in b/Templates/TestDriver.cxx.in index 61134172ed..845f799ec6 100644 --- a/Templates/TestDriver.cxx.in +++ b/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 */ |