~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/hash.h

  • Committer: Brian Aker
  • Date: 2009-11-25 07:05:58 UTC
  • mfrom: (1192.3.39 pandora-build)
  • Revision ID: brian@gaz-20091125070558-mzf1m5etiwb841jb
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
template <>
94
94
struct hash<const char*> {
95
95
  // Dummy, just to make derivative hash functions compile.
96
 
  int operator()(const char* key) {
 
96
  int operator()(const char*) {
97
97
    assert(0);
98
98
    return 0;
99
99
  }