~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/hash.h

Removed a bogus line. Methinks this never ran before, because it's a pile of poo.

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
  }