summaryrefslogtreecommitdiff
path: root/Templates
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-07-14 16:47:16 -0400
committerBen Boeckel <ben.boeckel@kitware.com>2021-07-14 16:47:16 -0400
commit32ff836e2adcfefd9ff8f7bd24d20da30c42c62f (patch)
treed0bbac90244af7842a81b04ad1523a41f0635a0e /Templates
parentff7a2e37bfff23ce1751a93b3eba179fbf32a9b6 (diff)
downloadcmake-32ff836e2adcfefd9ff8f7bd24d20da30c42c62f.tar.gz
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.in2
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 */