iwyu/test_util: Update includes

Include what you use analysis based include update.

Change-Id: I92a2cb481f5475be51ffc8651782df7babe852ef
This commit is contained in:
Tom Finegan 2016-03-09 13:50:56 -08:00
parent b6174be19d
commit 41a17eb108
2 changed files with 2 additions and 7 deletions

View File

@ -7,10 +7,7 @@
// be found in the AUTHORS file in the root of the source tree.
#include "testing/test_util.h"
#include <sys/stat.h>
#ifndef _MSC_VER
#include <unistd.h> // close()
#else
#ifdef _MSC_VER
// Disable MSVC warnings that suggest making code non-portable.
#pragma warning(disable:4996)
#endif
@ -19,12 +16,9 @@
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <fstream>
#include <ios>
#include <memory>
#include <string>
#include "common/file_util.h"
#include "common/libwebm_util.h"
namespace libwebm {

View File

@ -8,6 +8,7 @@
#ifndef LIBWEBM_TESTING_TEST_UTIL_H_
#define LIBWEBM_TESTING_TEST_UTIL_H_
#include <cstddef>
#include <cstdint>
#include <string>