remove eof whitespace lines
[folly.git] / folly / experimental / io / HugePageUtil.cpp
index 1ce36986474c6de258672ffa6e8e4af96e23b04a..cc601b9b30ae7fa97e2eca4c9ecad2f67f48b440 100644 (file)
 
 #include <gflags/gflags.h>
 
-#include "folly/File.h"
-#include "folly/Format.h"
-#include "folly/MemoryMapping.h"
-#include "folly/Portability.h"
-#include "folly/Range.h"
-#include "folly/ScopeGuard.h"
-#include "folly/experimental/io/HugePages.h"
+#include <folly/File.h>
+#include <folly/Format.h>
+#include <folly/MemoryMapping.h>
+#include <folly/Portability.h>
+#include <folly/Range.h>
+#include <folly/ScopeGuard.h>
+#include <folly/experimental/io/HugePages.h>
 
 DEFINE_bool(cp, false, "Copy file");
 
@@ -74,7 +74,7 @@ void list() {
 
 
 int main(int argc, char *argv[]) {
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   if (FLAGS_cp) {
     if (argc != 3) usage(argv[0]);
     copy(argv[1], argv[2]);
@@ -84,4 +84,3 @@ int main(int argc, char *argv[]) {
   }
   return 0;
 }
-