Commit bc779ac3 authored by Michael Lee's avatar Michael Lee Committed by Facebook Github Bot

Remove unecessary iostream include

Summary: MacAddress only needs to include ostream and the test header does not need iostream.

Differential Revision: D4286405

fbshipit-source-id: e64fdd4e8428c62279ed7c185188f3dfc14096d3
parent abf585dc
...@@ -19,23 +19,24 @@ ...@@ -19,23 +19,24 @@
#include <folly/io/async/test/TimeUtil.h> #include <folly/io/async/test/TimeUtil.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#ifndef _MSC_VER
#include <sys/utsname.h>
#endif
#include <chrono>
#include <ostream>
#include <stdexcept>
#include <folly/Conv.h> #include <folly/Conv.h>
#include <folly/portability/SysSyscall.h> #include <folly/portability/SysSyscall.h>
#include <folly/portability/Unistd.h> #include <folly/portability/Unistd.h>
#include <folly/portability/Windows.h> #include <folly/portability/Windows.h>
#include <chrono>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <glog/logging.h> #include <glog/logging.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdexcept>
#ifndef _MSC_VER
#include <sys/utsname.h>
#endif
using std::string; using std::string;
using namespace std::chrono; using namespace std::chrono;
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#pragma once #pragma once
#include <chrono> #include <chrono>
#include <iostream> #include <iosfwd>
#include <folly/portability/SysTypes.h> #include <folly/portability/SysTypes.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment