From 472c74006f4dd990bb58d85fca801bc4e9db22a4 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 16 Nov 2015 14:41:11 -0800 Subject: [PATCH 1/2] Add necessary headers after cpplint rearranged includes --- port/win/win_logger.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/port/win/win_logger.h b/port/win/win_logger.h index 67e45907f..1460ba8b6 100644 --- a/port/win/win_logger.h +++ b/port/win/win_logger.h @@ -16,6 +16,9 @@ #include "rocksdb/env.h" +#include +#include + namespace rocksdb { class Env; From 314f62194aafed7bfb5b42c17b77ac3e34795751 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 16 Nov 2015 15:08:11 -0800 Subject: [PATCH 2/2] Remove headers from the cc since they are in the module's header. --- port/win/win_logger.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/port/win/win_logger.cc b/port/win/win_logger.cc index 20ef759e4..f9f92771a 100644 --- a/port/win/win_logger.cc +++ b/port/win/win_logger.cc @@ -12,7 +12,6 @@ #include "port/win/win_logger.h" -#include #include #include #include @@ -21,8 +20,6 @@ #include "rocksdb/env.h" -#include - #include "port/sys_time.h" #include "util/iostats_context_imp.h"