TestDriver: suppress deprecated header lints for time.h

Similar to the other includes, this one should be suppressed as well.
This commit is contained in:
Ben Boeckel
2021-07-14 16:47:16 -04:00
parent ff7a2e37bf
commit 32ff836e2a

View File

@@ -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 */