Browse Source

Add #include <my_config.h> at the start of every .cc file

pull/355/head
Sergei Petrunia 9 years ago
parent
commit
7c3affdcc0
  1. 2
      storage/rocksdb/event_listener.cc
  2. 3
      storage/rocksdb/ha_rocksdb.cc
  3. 2
      storage/rocksdb/properties_collector.cc
  4. 2
      storage/rocksdb/rdb_cf_manager.cc
  5. 2
      storage/rocksdb/rdb_cf_options.cc
  6. 2
      storage/rocksdb/rdb_i_s.cc
  7. 2
      storage/rocksdb/rdb_index_merge.cc
  8. 2
      storage/rocksdb/rdb_mutex_wrapper.cc
  9. 2
      storage/rocksdb/rdb_perf_context.cc
  10. 2
      storage/rocksdb/rdb_sst_info.cc
  11. 2
      storage/rocksdb/rdb_threads.cc
  12. 2
      storage/rocksdb/rdb_utils.cc

2
storage/rocksdb/event_listener.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* The C++ file's header */
#include "./event_listener.h"

3
storage/rocksdb/ha_rocksdb.cc

@ -20,8 +20,9 @@
#define MYSQL_SERVER 1
/* The C++ file's header */
#include <my_config.h>
/* The C++ file's header */
#include "./ha_rocksdb.h"
/* C++ standard header files */

2
storage/rocksdb/properties_collector.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* This C++ file's header file */
#include "./properties_collector.h"

2
storage/rocksdb/rdb_cf_manager.cc

@ -18,6 +18,8 @@
#pragma implementation // gcc: Class implementation
#endif
#include <my_config.h>
/* This C++ files header file */
#include "./rdb_cf_manager.h"

2
storage/rocksdb/rdb_cf_options.cc

@ -18,6 +18,8 @@
#pragma implementation // gcc: Class implementation
#endif
#include <my_config.h>
/* This C++ files header file */
#include "./rdb_cf_options.h"

2
storage/rocksdb/rdb_i_s.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* C++ standard header files */
#include <string>
#include <vector>

2
storage/rocksdb/rdb_index_merge.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* This C++ file's header file */
#include "./rdb_index_merge.h"

2
storage/rocksdb/rdb_mutex_wrapper.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* This C++ file's header file */
#include "./rdb_mutex_wrapper.h"

2
storage/rocksdb/rdb_perf_context.cc

@ -15,6 +15,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* This C++ file's header file */
#include "./rdb_perf_context.h"

2
storage/rocksdb/rdb_sst_info.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* This C++ file's header file */
#include "./rdb_sst_info.h"

2
storage/rocksdb/rdb_threads.cc

@ -19,6 +19,8 @@
#pragma implementation // gcc: Class implementation
#endif
#include <my_config.h>
/* The C++ file's header */
#include "./rdb_threads.h"

2
storage/rocksdb/rdb_utils.cc

@ -14,6 +14,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <my_config.h>
/* This C++ file's header */
#include "./rdb_utils.h"

Loading…
Cancel
Save