diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-07-14 20:47:16 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-07-14 20:47:16 (GMT) |
commit | 32ff836e2adcfefd9ff8f7bd24d20da30c42c62f (patch) | |
tree | d0bbac90244af7842a81b04ad1523a41f0635a0e /Templates | |
parent | ff7a2e37bfff23ce1751a93b3eba179fbf32a9b6 (diff) | |
download | CMake-32ff836e2adcfefd9ff8f7bd24d20da30c42c62f.zip CMake-32ff836e2adcfefd9ff8f7bd24d20da30c42c62f.tar.gz CMake-32ff836e2adcfefd9ff8f7bd24d20da30c42c62f.tar.bz2 |
TestDriver: suppress deprecated header lints for time.h
Similar to the other includes, this one should be suppressed as well.
Diffstat (limited to 'Templates')
-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 6113417..845f799 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 */ |