~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset-def.cc

  • Committer: Brian Aker
  • Date: 2009-05-15 17:06:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1023.
  • Revision ID: brian@gaz-20090515170635-croy1u63a3gqdn9n
Dead convert functions for character sets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "mysys_priv.h"
 
16
#include "mysys/mysys_priv.h"
17
17
 
18
18
/*
19
19
  Include all compiled character sets into the client
44
44
#endif /* HAVE_CHARSET_utf8mb4 */
45
45
 
46
46
 
47
 
bool init_compiled_charsets(myf flags __attribute__((unused)))
 
47
bool init_compiled_charsets(myf)
48
48
{
49
49
  CHARSET_INFO *cs;
50
50
 
79
79
  /* Copy compiled charsets */
80
80
  for (cs=compiled_charsets; cs->name; cs++)
81
81
    add_compiled_collation(cs);
82
 
  
 
82
 
83
83
  return false;
84
84
}