Navigation Menu

Skip to content

Commit

Permalink
use <...> instead of "..." for #include.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jul 4, 2011
1 parent 1f112cc commit f82f48b
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions mrn_table.cc
Expand Up @@ -31,16 +31,17 @@

#define MYSQL_SERVER 1
#include "mysql_version.h"
#if MYSQL_VERSION_ID < 50500
# include "mysql_priv.h"

#ifdef MYSQL51
# include <mysql_priv.h>
# include <mysql/plugin.h>
#else
# include "sql_priv.h"
# include "probes_mysql.h"
# include "sql_class.h"
# include "sql_partition.h"
# include "sql_servers.h"
# include "sql_base.h"
#else /* MYSQL51 */
# include <sql_priv.h>
# include <sql_class.h>
# include <probes_mysql.h>
# include <sql_partition.h>
# include <sql_servers.h>
# include <sql_base.h>
#endif
#include "mrn_err.h"
#include "mrn_sys.h"
Expand Down

0 comments on commit f82f48b

Please sign in to comment.