Skip to content

Commit 7c3affd

Browse files
committed
Add #include <my_config.h> at the start of every .cc file
1 parent a482f22 commit 7c3affd

12 files changed

+24
-1
lines changed

storage/rocksdb/event_listener.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
along with this program; if not, write to the Free Software
1515
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1616

17+
#include <my_config.h>
18+
1719
/* The C++ file's header */
1820
#include "./event_listener.h"
1921

storage/rocksdb/ha_rocksdb.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020

2121
#define MYSQL_SERVER 1
2222

23-
/* The C++ file's header */
2423
#include <my_config.h>
24+
25+
/* The C++ file's header */
2526
#include "./ha_rocksdb.h"
2627

2728
/* C++ standard header files */

storage/rocksdb/properties_collector.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
along with this program; if not, write to the Free Software
1515
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1616

17+
#include <my_config.h>
18+
1719
/* This C++ file's header file */
1820
#include "./properties_collector.h"
1921

storage/rocksdb/rdb_cf_manager.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#pragma implementation // gcc: Class implementation
1919
#endif
2020

21+
#include <my_config.h>
22+
2123
/* This C++ files header file */
2224
#include "./rdb_cf_manager.h"
2325

storage/rocksdb/rdb_cf_options.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#pragma implementation // gcc: Class implementation
1919
#endif
2020

21+
#include <my_config.h>
22+
2123
/* This C++ files header file */
2224
#include "./rdb_cf_options.h"
2325

storage/rocksdb/rdb_i_s.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
along with this program; if not, write to the Free Software
1515
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1616

17+
#include <my_config.h>
18+
1719
/* C++ standard header files */
1820
#include <string>
1921
#include <vector>

storage/rocksdb/rdb_index_merge.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
along with this program; if not, write to the Free Software
1515
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1616

17+
#include <my_config.h>
18+
1719
/* This C++ file's header file */
1820
#include "./rdb_index_merge.h"
1921

storage/rocksdb/rdb_mutex_wrapper.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
along with this program; if not, write to the Free Software
1515
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1616

17+
#include <my_config.h>
18+
1719
/* This C++ file's header file */
1820
#include "./rdb_mutex_wrapper.h"
1921

storage/rocksdb/rdb_perf_context.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
along with this program; if not, write to the Free Software
1616
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1717

18+
#include <my_config.h>
19+
1820
/* This C++ file's header file */
1921
#include "./rdb_perf_context.h"
2022

storage/rocksdb/rdb_sst_info.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
along with this program; if not, write to the Free Software
1515
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
1616

17+
#include <my_config.h>
18+
1719
/* This C++ file's header file */
1820
#include "./rdb_sst_info.h"
1921

0 commit comments

Comments
 (0)