2017
[folly.git] / folly / io / async / test / TimeUtil.cpp
index 6db4964bee9964008eea1ac2efb81657759f18cf..74ac884c1dfc2b10ced58ce8379df5b28d705fb2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 #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/portability/SysSyscall.h>
 #include <folly/portability/Unistd.h>
 #include <folly/portability/Windows.h>
 
-#include <chrono>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <errno.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 namespace std::chrono;